{
  "calculate_sdes": null,
  "calculation_method": "PATIENT",
  "cms_id": "CMS460v0",
  "component": false,
  "component_hqmf_set_ids": [

  ],
  "composite": false,
  "composite_hqmf_set_id": null,
  "cql_libraries": [
    {
      "cql": "library OpioidMedicationLogic version '1.17.000'\r\n\r\nusing QDM version '5.3'\r\n\r\ninclude OpioidData version '0.8.000' called OpioidDataLibrary\r\n\r\ncodesystem \"LOINC\": 'urn:oid:2.16.840.1.113883.6.1'\r\ncodesystem \"SNOMEDCT\": 'urn:oid:2.16.840.1.113883.6.96'\r\n\r\ncode \"Birthdate\": '21112-8' from \"LOINC\" display 'Birthdate'\r\ncode \"Dead\": '419099009' from \"SNOMEDCT\" display 'Dead'\r\n\r\nparameter \"Measurement Period\" Interval<DateTime>\r\n\r\ncontext Patient\r\n\r\ndefine function \"ToDaily\"(period System.Quantity, frequency Integer):\r\n\t/* This function calculates the daily dosage of medication using the Period (Years, Months, Weeks, Days, Hours, Minutes or Seconds) to determine frequency */\r\n\tcase period.unit\r\n\t\twhen 'h' then frequency * ( 24.0 / period.value )\r\n\t\twhen 'min' then frequency * ( 24.0 / period.value ) * 60\r\n\t\twhen 's' then frequency * ( 24.0 / period.value ) * 60 * 60\r\n\t\twhen 'd' then frequency * ( 24.0 / period.value ) / 24\r\n\t\twhen 'wk' then frequency * ( 24.0 / period.value ) / ( 24 * 7 )\r\n\t\twhen 'mo' then frequency * ( 24.0 / period.value ) / ( 24 * 30 ) /* assuming 30 days in month */\r\n\t\twhen 'a' then frequency * ( 24.0 / period.value ) / ( 24 * 365 ) /* assuming 365 days in year */ \r\n\t\telse null \r\n\tend\r\n\r\ndefine function \"GetIngredients\"(rxNormCode Code):\r\n\t/* This function matches the Drug code to the Opioid Data Library Drug Code, then returns the Drug Code, Drug Name, Dose Form, Strength and Unit*/\r\n\tOpioidDataLibrary.\"DrugIngredients\" DrugIngredientElement\r\n\t\twhere DrugIngredientElement.drugCode = ToInteger(rxNormCode.code)\r\n\t\treturn {\r\n\t\t\trxNormCode: Code { code: ToString(DrugIngredientElement.drugCode), system: '2.16.840.1.113883.6.88', display: DrugIngredientElement.drugName },\r\n\t\t\tdoseFormCode: Code { code: ToString(DrugIngredientElement.doseFormCode), system: '2.16.840.1.113883.6.88', display: DrugIngredientElement.doseFormName },\r\n\t\t\tdoseFormName: DrugIngredientElement.doseFormName,\r\n\t\t\tingredientCode: Code { code: ToString(DrugIngredientElement.ingredientCode), system: '2.16.840.1.113883.6.88', display: DrugIngredientElement.ingredientName },\r\n\t\t\tingredientName: DrugIngredientElement.ingredientName,\r\n\t\t\tstrength: EnsureMicrogramQuantity(Quantity { value: DrugIngredientElement.strengthValue, unit: ToUnifiedCodeForUnitsOfMeasure(DrugIngredientElement.strengthUnit)})\r\n\t\t}\r\n\r\ndefine function \"IsTransdermalPatch\"(doseFormCode Code):\r\n\t/*This function examines Drug Form Code, and if given dose form is a patch (transdermal), then returns 'true' for any functions using that value*/\r\n\tToInteger(doseFormCode.code)= 316987\r\n\r\ndefine function \"CalculateMorphineMilligramEquivalents\"(medications List<Tuple {\r\n\trxNormCode Code,\r\n\tdoseQuantity Quantity,\r\n\tdosesPerDay Decimal\r\n}>):\r\n\t/* This function returns the MME dosage using values passed from the GetIngredients, EnsureMicrogramQuantity, GetMedicationDailyDose, GetMedDailyDoseDescription, GetConversionFactor functions*/\r\n\tFlatten(medications Med\r\n\t\t\tlet Ingredients: \"GetIngredients\"(Med.rxNormCode)\r\n\t\t\treturn Ingredients Drug\r\n\t\t\t\tlet adjustedDoseQuantity: \"EnsureMicrogramQuantity\"(Med.doseQuantity),\r\n\t\t\t\tdailyDose: \"GetMedicationDailyDose\"(Drug.ingredientCode, Drug.strength, Drug.doseFormCode, adjustedDoseQuantity, Med.dosesPerDay),\r\n\t\t\t\tfactor: \"GetConversionFactor\"(Drug.ingredientCode, dailyDose, Drug.doseFormCode),\r\n\t\t\t\tdailyDoseDescription: \"GetMedDailyDoseDescription\"(Drug.ingredientCode, Drug.ingredientName, Drug.strength, Drug.doseFormCode, Drug.doseFormName, adjustedDoseQuantity, Med.dosesPerDay, dailyDose),\r\n\t\t\t\tMME: Quantity { value: dailyDose.value * factor, unit: dailyDose.unit + '/d' }\r\n\t\t\t\treturn {\r\n\t\t\t\t\trxNormCode: Med.rxNormCode,\r\n\t\t\t\t\tdoseFormCode: Drug.doseFormCode,\r\n\t\t\t\t\tdoseQuantity: adjustedDoseQuantity,\r\n\t\t\t\t\tdosesPerDay: Med.dosesPerDay,\r\n\t\t\t\t\tingredientCode: Drug.ingredientCode,\r\n\t\t\t\t\tingredientName: Drug.ingredientName,\r\n\t\t\t\t\tstrength: Drug.strength,\r\n\t\t\t\t\tdailyDose: dailyDose,\r\n\t\t\t\t\tdailyDoseDescription: dailyDoseDescription,\r\n\t\t\t\t\tconversionFactor: factor,\r\n\t\t\t\t\tMME: MME\r\n\t\t\t\t}\r\n\t)\r\n\r\ndefine function \"GetConversionFactor\"(ingredientCode Code, dailyDose Quantity, doseFormCode Code):\r\n\t/* This function specifies the conversion factor (based on the Ingredient Code) to be used by the Calculate MME function */\r\n\tcase ToInteger(ingredientCode.code)\r\n\t\twhen 161 then 0  /*\tAcetaminophen */\r\n\t\twhen 1191 then 0 /*\tAspirin */\r\n\t\twhen 1223 then 0 /*\tAtropine */\r\n\t\twhen 1767 then 0 /*\tBrompheniramine */\r\n\t\twhen 1819 then ( /*\tBuprenorphine */ case\r\n\t\t\t\twhen ToInteger(doseFormCode.code)= 316987 then 12.6 /* Transdermal system */ \r\n\t\t\t\telse 30 /* Tablet or Film (or Film in MCG) */ \r\n\t\t\tend\r\n\t\t)\r\n\t\twhen 1841 then 7 /*\tButorphanol */\r\n\t\twhen 1886 then 0 /*\tCaffeine */\r\n\t\twhen 2101 then 0 /*\tCarisoprodol */\r\n\t\twhen 2354 then 0 /*\tchlorcyclizine */\r\n\t\twhen 2400 then 0 /*\tChlorpheniramine */\r\n\t\twhen 2670 then 0.15 /*\tCodeine */\r\n\t\twhen 3423 then 4 /*\tHydromorphone */\r\n\t\twhen 3498 then 0 /*\tDiphenhydramine */\r\n\t\twhen 4337 then ( /*\tFentanyl */ case\r\n\t\t\t\twhen ToInteger(doseFormCode.code)in { 970789, 317007, 316992 } then 0.13 /* Buccal Tablet, Sublingual Tablet, Oral Lozenge */\r\n\t\t\t\twhen ToInteger(doseFormCode.code)= 346163 then 0.18 /* Buccal Film */\r\n\t\t\t\twhen ToInteger(doseFormCode.code)in { 126542, 346163 } then 0.16 /* Nasal Spray, Mucosal Spray */\r\n\t\t\t\twhen \"IsTransdermalPatch\"(doseFormCode)then 7.2 /* Transdermal system */ \r\n\t\t\t\telse 1000 \r\n\t\t\tend\r\n\t\t)\r\n\t\twhen 5032 then 0 /*\tGuaifenesin */\r\n\t\twhen 5489 then 1 /*\tHydrocodone */\r\n\t\twhen 5640 then 0 /*\tIbuprofen */\r\n\t\twhen 6102 then 0 /*\tKaolin */\r\n\t\twhen 6378 then 11 /*\tLevorphanol (NOTE: Given as Levorphanol tartrate in the CDC conversion table) */\r\n\t\twhen 6754 then 0.1 /*\tMeperidine */\r\n\t\twhen 6813 then ( /*\tMethadone */ case\r\n\t\t\t\twhen dailyDose.value between 1 and 20 then 4\r\n\t\t\t\twhen dailyDose.value between 21 and 40 then 8\r\n\t\t\t\twhen dailyDose.value between 41 and 60 then 10\r\n\t\t\t\twhen dailyDose.value >= 61 then 12 \r\n\t\t\t\telse 1000 \r\n\t\t\tend\r\n\t\t)\r\n\t\twhen 7052 then 1 /*\tMorphine */\r\n\t\twhen 7238 then 1 /*Nalbuphine*/\r\n\t\twhen 7242 then 0 /*\tNaloxone */\r\n\t\twhen 7243 then 0 /*\tNaltrexone */\r\n\t\twhen 7676 then 1 /*Opium*/\r\n\t\twhen 7804 then 1.5 /*\tOxycodone */\r\n\t\twhen 7814 then 3 /*\tOxymorphone */\r\n\t\twhen 8001 then 0.37 /*\tPentazocine */\r\n\t\twhen 8163 then 0 /*\tPhenylephrine */\r\n\t\twhen 8175 then 0 /*\tPhenylpropanolamine */\r\n\t\twhen 8745 then 0 /*\tPromethazine */\r\n\t\twhen 8896 then 0 /*\tPseudoephedrine */\r\n\t\twhen 9009 then 0 /*\tPyrilamine */\r\n\t\twhen 10689 then 0.1 /*\tTramadol */\r\n\t\twhen 10849 then 0 /*\tTriprolidine */\r\n\t\twhen 19759 then 0 /*\tbromodiphenhydramine */\r\n\t\twhen 19860 then 0 /*\tbutalbital */\r\n\t\twhen 22696 then 0 /*\tdexbrompheniramine */\r\n\t\twhen 22697 then 0 /*\tdexchlorpheniramine */\r\n\t\twhen 23088 then 0.25 /*\tdihydrocodeine */\r\n\t\twhen 27084 then 0 /*\thomatropine */\r\n\t\twhen 35780 then 0 /*\tropivacaine */\r\n\t\twhen 237005 then 8 /*\tLevomethadyl (NOTE: given as Levomethadyl acetate in the CDC conversion table) */\r\n\t\twhen 636827 then 0 /*\tguaiacolsulfonate */\r\n\t\twhen 787390 then 0.4 /*\ttapentadol */ \r\n\t\telse 0 \r\n\tend\r\n\r\ndefine function \"GetMedDailyDoseDescription\"(ingredientCode Code, ingredientName String, strength Quantity, doseFormCode Code, doseFormName String, doseQuantity Quantity, dosesPerDay Decimal, dailyDose Quantity):\r\n\t/* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Name that will be used by the Calculate MME function*/\r\n\tcase\r\n\t    /* if patch */\r\n\t\twhen \"IsTransdermalPatch\"(doseFormCode)then\r\n\t      /* buprenorphine or fentanyl patch */ if ToInteger(ingredientCode.code)in { 1819, 4337 } then ingredientName + ' patch: ' + ToString(doseQuantity.value)+ ' * ' + ToString(strength)+ ' = ' + ToString(dailyDose)\r\n\t\t\telse null\r\n\t\r\n\t\r\n\t    /* if dose unit in actual mass units (mg or mcg -- when it's a single med) */\r\n\t\twhen doseQuantity.unit in { 'mg', 'mcg' } then ingredientName + ' ' + doseFormName + ': ' + ToString(dosesPerDay)+ '/d * ' + ToString(doseQuantity)+ ' = ' + ToString(dailyDose)\r\n\t\r\n\t\r\n\t    /* if doseQuantity in actual volume units (mL) or not in actual units (e.g. 1 tab, 1 spray) */\r\n\t\telse ingredientName + ' ' + doseFormName + ': ' + ToString(dosesPerDay)+ '/d * ' + ToString(doseQuantity)+ ' * ' + ToString(strength)+ ' = ' + ToString(dailyDose)\r\n\tend\r\n\r\ndefine function \"GetMedicationDailyDose\"(ingredientCode Code, strength Quantity, doseFormCode Code, doseQuantity Quantity, dosesPerDay Decimal):\r\n\t/* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Quantity that will be used by the Calculate MME function*/\r\n\tcase\r\n\t  /* if patch --> daily dose = dose value (e.g, number patches with doseQuantity unit = \"patch\") * per-hour strength */\r\n\t\twhen \"IsTransdermalPatch\"(doseFormCode)then\r\n\t      /* buprenorphine or fentanyl patch */ if ToInteger(ingredientCode.code)in { 1819, 4337 } then Quantity { value: doseQuantity.value * strength.value, unit: strength.unit } \r\n\t\t\telse null\r\n\t\r\n\t\r\n\t    /* if dose unit in actual mass units (mg or mcg -- when it's a single med) --> daily dose = numTimesPerDay * dose */\r\n\t\twhen doseQuantity.unit in { 'mg', 'mcg' } then Quantity { value: dosesPerDay * doseQuantity.value, unit: doseQuantity.unit }\r\n\t\r\n\t\r\n\t    /* if doseQuantity is in actual volume units (mL) --> daily dose = numTimesPerDay * dose * strength */\r\n\t\twhen doseQuantity.unit = 'mL'\r\n\t\t\tand ( PositionOf('/mL', strength.unit)= Length(strength.unit)- 3 ) then Quantity { value: dosesPerDay * doseQuantity.value * strength.value, unit: Substring(strength.unit, 0, PositionOf('/', strength.unit))}\r\n\t\r\n\t\r\n\t/* if doseQuantity is not in actual units (e.g., 1 tab, 1 spray -- when it's a combo med with a unit of tablet, or it's mg/actuat) -->  daily dose = numTimesPerDay * dose value * strength value */ \r\n\t\telse Quantity { value: dosesPerDay * doseQuantity.value * strength.value, unit: Substring(strength.unit, 0, PositionOf('/', strength.unit))} \r\n\tend\r\n\r\ndefine function \"ToUnifiedCodeForUnitsOfMeasure\"(unit String):\r\n\t/* This function converts the dose units to the correct Unified Code for Units Of Measure (UCUM) unit */\r\n\tcase unit\r\n\t\twhen 'MG' then 'mg'\r\n\t\twhen 'MG/ACTUAT' then 'mg/{actuat}'\r\n\t\twhen 'MG/HR' then 'mg/h'\r\n\t\twhen 'MG/ML' then 'mg/mL' \r\n\t\telse 'unknown{' + unit + '}' \r\n\tend\r\n\r\ndefine function \"EnsureMicrogramQuantity\"(strength Quantity):\r\n\t/* This function checks the Drug strength, and if it is less than 0.1 and the strength unit (mg) is zero, then the Quantity is set to the strength value x 1000 and unit of mcg */\r\n\tif strength.value < 0.1\r\n\t\tand ( PositionOf('mg', strength.unit)= 0 ) then Quantity { value: strength.value * 1000, unit: 'mcg' + Substring(strength.unit, 2)} \r\n\t\telse strength\r\n",
      "elm": {
        "library": {
          "identifier": {
            "id": "PotentialOpioidOveruse",
            "version": "0.1.068"
          },
          "schemaIdentifier": {
            "id": "urn:hl7-org:elm",
            "version": "r1"
          },
          "usings": {
            "def": [
              {
                "localIdentifier": "System",
                "uri": "urn:hl7-org:elm-types:r1"
              },
              {
                "localId": "1",
                "localIdentifier": "QDM",
                "uri": "urn:healthit-gov:qdm:v5_3",
                "version": "5.3"
              }
            ]
          },
          "includes": {
            "def": [
              {
                "localId": "2",
                "localIdentifier": "Global",
                "path": "MATGlobalCommonFunctions",
                "version": "2.0.000"
              },
              {
                "localId": "3",
                "localIdentifier": "OpioidLogicLibrary",
                "path": "OpioidMedicationLogic",
                "version": "1.17.000"
              },
              {
                "localId": "4",
                "localIdentifier": "Timing",
                "path": "DayMonthTimings",
                "version": "0.6.000"
              }
            ]
          },
          "parameters": {
            "def": [
              {
                "localId": "49",
                "name": "Measurement Period",
                "accessLevel": "Public",
                "parameterTypeSpecifier": {
                  "localId": "48",
                  "type": "IntervalTypeSpecifier",
                  "pointType": {
                    "localId": "47",
                    "name": "{urn:hl7-org:elm-types:r1}DateTime",
                    "type": "NamedTypeSpecifier"
                  }
                }
              }
            ]
          },
          "codeSystems": {
            "def": [
              {
                "localId": "5",
                "name": "SNOMEDCT:2018-03",
                "id": "2.16.840.1.113883.6.96",
                "version": "urn:hl7:version:2018-03",
                "accessLevel": "Public"
              }
            ]
          },
          "valueSets": {
            "def": [
              {
                "localId": "6",
                "name": "ONC Administrative Sex",
                "id": "2.16.840.1.113762.1.4.1",
                "accessLevel": "Public"
              },
              {
                "localId": "7",
                "name": "Race",
                "id": "2.16.840.1.114222.4.11.836",
                "accessLevel": "Public"
              },
              {
                "localId": "8",
                "name": "Ethnicity",
                "id": "2.16.840.1.114222.4.11.837",
                "accessLevel": "Public"
              },
              {
                "localId": "9",
                "name": "Payer",
                "id": "2.16.840.1.114222.4.11.3591",
                "accessLevel": "Public"
              },
              {
                "localId": "10",
                "name": "Office Visit",
                "id": "2.16.840.1.113883.3.464.1003.101.12.1001",
                "accessLevel": "Public"
              },
              {
                "localId": "11",
                "name": "Preventive Care Services - Established Office Visit, 18 and Up",
                "id": "2.16.840.1.113883.3.464.1003.101.12.1025",
                "accessLevel": "Public"
              },
              {
                "localId": "12",
                "name": "Preventive Care Services-Initial Office Visit, 18 and Up",
                "id": "2.16.840.1.113883.3.464.1003.101.12.1023",
                "accessLevel": "Public"
              },
              {
                "localId": "13",
                "name": "Preventive Care Services - Other",
                "id": "2.16.840.1.113883.3.464.1003.101.12.1030",
                "accessLevel": "Public"
              },
              {
                "localId": "14",
                "name": "Face to Face Interaction - No ED",
                "id": "2.16.840.1.113762.1.4.1080.2",
                "accessLevel": "Public"
              },
              {
                "localId": "15",
                "name": "Palliative Care",
                "id": "2.16.840.1.113883.3.600.1.1579",
                "accessLevel": "Public"
              },
              {
                "localId": "16",
                "name": "Hospice Care SNO",
                "id": "2.16.840.1.113883.3.3157.1004.20",
                "accessLevel": "Public"
              },
              {
                "localId": "17",
                "name": "All Cancer",
                "id": "2.16.840.1.113883.3.464.1003.108.12.1011",
                "accessLevel": "Public"
              },
              {
                "localId": "18",
                "name": "Sickle Cell Disease SNOMEDCT",
                "id": "2.16.840.1.113762.1.4.1029.33",
                "accessLevel": "Public"
              },
              {
                "localId": "19",
                "name": "Outpatient Consultation",
                "id": "2.16.840.1.113883.3.464.1003.101.12.1008",
                "accessLevel": "Public"
              },
              {
                "localId": "20",
                "name": "Opioid Medications",
                "id": "2.16.840.1.113883.3.3157.1004.26",
                "accessLevel": "Public"
              }
            ]
          },
          "codes": {
            "def": [
              {
                "localId": "22",
                "name": "Every eight hours (qualifier value)",
                "id": "307469008",
                "display": "Every eight hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "21",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "24",
                "name": "Every forty eight hours (qualifier value)",
                "id": "396131002",
                "display": "Every forty eight hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "23",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "26",
                "name": "Every four hours as required (qualifier value)",
                "id": "1791000175106",
                "display": "Every four hours as required (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "25",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "28",
                "name": "Every seventy two hours (qualifier value)",
                "id": "396143001",
                "display": "Every seventy two hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "27",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "30",
                "name": "Every six hours (qualifier value)",
                "id": "307468000",
                "display": "Every six hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "29",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "32",
                "name": "Every thirty six hours (qualifier value)",
                "id": "396126004",
                "display": "Every thirty six hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "31",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "34",
                "name": "Every twelve hours (qualifier value)",
                "id": "307470009",
                "display": "Every twelve hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "33",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "36",
                "name": "Every twenty four hours (qualifier value)",
                "id": "396125000",
                "display": "Every twenty four hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "35",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "38",
                "name": "Every two to four hours (qualifier value)",
                "id": "225752000",
                "display": "Every two to four hours (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "37",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "40",
                "name": "Four times daily (qualifier value)",
                "id": "307439001",
                "display": "Four times daily (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "39",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "42",
                "name": "Once daily (qualifier value)",
                "id": "229797004",
                "display": "Once daily (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "41",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "44",
                "name": "Three times daily (qualifier value)",
                "id": "229798009",
                "display": "Three times daily (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "43",
                  "name": "SNOMEDCT:2018-03"
                }
              },
              {
                "localId": "46",
                "name": "Twice a day (qualifier value)",
                "id": "229799001",
                "display": "Twice a day (qualifier value)",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "45",
                  "name": "SNOMEDCT:2018-03"
                }
              }
            ]
          },
          "statements": {
            "def": [
              {
                "name": "Patient",
                "context": "Patient",
                "expression": {
                  "type": "SingletonFrom",
                  "operand": {
                    "dataType": "{urn:healthit-gov:qdm:v5_3}Patient",
                    "templateId": "Patient",
                    "type": "Retrieve"
                  }
                }
              },
              {
                "localId": "51",
                "name": "SDE Ethnicity",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "51",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"SDE Ethnicity\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "50",
                          "s": [
                            {
                              "value": [
                                "[",
                                "\"Patient Characteristic Ethnicity\"",
                                ": "
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "\"Ethnicity\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "50",
                  "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicEthnicity",
                  "codeProperty": "code",
                  "type": "Retrieve",
                  "codes": {
                    "name": "Ethnicity",
                    "type": "ValueSetRef"
                  }
                }
              },
              {
                "localId": "53",
                "name": "SDE Payer",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "53",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"SDE Payer\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "52",
                          "s": [
                            {
                              "value": [
                                "[",
                                "\"Patient Characteristic Payer\"",
                                ": "
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "\"Payer\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "52",
                  "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicPayer",
                  "codeProperty": "code",
                  "type": "Retrieve",
                  "codes": {
                    "name": "Payer",
                    "type": "ValueSetRef"
                  }
                }
              },
              {
                "localId": "55",
                "name": "SDE Race",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "55",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"SDE Race\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "54",
                          "s": [
                            {
                              "value": [
                                "[",
                                "\"Patient Characteristic Race\"",
                                ": "
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "\"Race\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "54",
                  "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicRace",
                  "codeProperty": "code",
                  "type": "Retrieve",
                  "codes": {
                    "name": "Race",
                    "type": "ValueSetRef"
                  }
                }
              },
              {
                "localId": "57",
                "name": "SDE Sex",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "57",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"SDE Sex\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "56",
                          "s": [
                            {
                              "value": [
                                "[",
                                "\"Patient Characteristic Sex\"",
                                ": "
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "\"ONC Administrative Sex\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "56",
                  "dataType": "{urn:healthit-gov:qdm:v5_3}PatientCharacteristicSex",
                  "codeProperty": "code",
                  "type": "Retrieve",
                  "codes": {
                    "name": "ONC Administrative Sex",
                    "type": "ValueSetRef"
                  }
                }
              },
              {
                "localId": "70",
                "name": "OpioidMedications",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "70",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"OpioidMedications\"",
                            ":\n\t/*An opioid medication order during or overlapping the start of the measurement period*/\r\n\t"
                          ]
                        },
                        {
                          "r": "69",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "59",
                                  "s": [
                                    {
                                      "r": "58",
                                      "s": [
                                        {
                                          "r": "58",
                                          "s": [
                                            {
                                              "value": [
                                                "[",
                                                "\"Medication, Order\"",
                                                ": "
                                              ]
                                            },
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Opioid Medications\""
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "]"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "OpioidMedicationOrder"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "68",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "68",
                                  "s": [
                                    {
                                      "r": "63",
                                      "s": [
                                        {
                                          "r": "61",
                                          "s": [
                                            {
                                              "r": "60",
                                              "s": [
                                                {
                                                  "value": [
                                                    "OpioidMedicationOrder"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "61",
                                              "s": [
                                                {
                                                  "value": [
                                                    "relevantPeriod"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "starts during",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "62",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Measurement Period\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\tor "
                                      ]
                                    },
                                    {
                                      "r": "67",
                                      "s": [
                                        {
                                          "r": "65",
                                          "s": [
                                            {
                                              "r": "64",
                                              "s": [
                                                {
                                                  "value": [
                                                    "OpioidMedicationOrder"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "65",
                                              "s": [
                                                {
                                                  "value": [
                                                    "relevantPeriod"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "overlaps",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "66",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Measurement Period\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "69",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "59",
                      "alias": "OpioidMedicationOrder",
                      "expression": {
                        "localId": "58",
                        "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveMedicationOrder",
                        "templateId": "PositiveMedicationOrder",
                        "codeProperty": "code",
                        "type": "Retrieve",
                        "codes": {
                          "name": "Opioid Medications",
                          "type": "ValueSetRef"
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "68",
                    "type": "Or",
                    "operand": [
                      {
                        "localId": "63",
                        "type": "In",
                        "operand": [
                          {
                            "type": "Start",
                            "operand": {
                              "localId": "61",
                              "path": "relevantPeriod",
                              "scope": "OpioidMedicationOrder",
                              "type": "Property"
                            }
                          },
                          {
                            "localId": "62",
                            "name": "Measurement Period",
                            "type": "ParameterRef"
                          }
                        ]
                      },
                      {
                        "localId": "67",
                        "type": "Overlaps",
                        "operand": [
                          {
                            "localId": "65",
                            "path": "relevantPeriod",
                            "scope": "OpioidMedicationOrder",
                            "type": "Property"
                          },
                          {
                            "localId": "66",
                            "name": "Measurement Period",
                            "type": "ParameterRef"
                          }
                        ]
                      }
                    ]
                  }
                }
              },
              {
                "localId": "143",
                "name": "DosesPerDay",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "143",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"DosesPerDay\"",
                            "(",
                            "frequency",
                            " "
                          ]
                        },
                        {
                          "r": "75",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "142",
                          "s": [
                            {
                              "r": "142",
                              "s": [
                                {
                                  "value": [
                                    "case\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "80",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "78",
                                      "s": [
                                        {
                                          "r": "76",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "77",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Once daily (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "85",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "83",
                                      "s": [
                                        {
                                          "r": "81",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "82",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Twice a day (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "90",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "88",
                                      "s": [
                                        {
                                          "r": "86",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "87",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Three times daily (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "95",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "93",
                                      "s": [
                                        {
                                          "r": "91",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "92",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Four times daily (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "100",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "98",
                                      "s": [
                                        {
                                          "r": "96",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "97",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every four hours as required (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "6.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "105",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "103",
                                      "s": [
                                        {
                                          "r": "101",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "102",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every two to four hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "110",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "108",
                                      "s": [
                                        {
                                          "r": "106",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "107",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every twenty four hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "115",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "113",
                                      "s": [
                                        {
                                          "r": "111",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "112",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every twelve hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "120",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "118",
                                      "s": [
                                        {
                                          "r": "116",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "117",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every thirty six hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "0.67"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "125",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "123",
                                      "s": [
                                        {
                                          "r": "121",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "122",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every eight hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "130",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "128",
                                      "s": [
                                        {
                                          "r": "126",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "127",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every six hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "135",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "133",
                                      "s": [
                                        {
                                          "r": "131",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "132",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every seventy two hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "0.34"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "140",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "138",
                                      "s": [
                                        {
                                          "r": "136",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "~",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "137",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Every forty eight hours (qualifier value)\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\t\telse ",
                                    "null",
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "142",
                  "type": "Case",
                  "caseItem": [
                    {
                      "localId": "80",
                      "when": {
                        "localId": "78",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "76",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "77",
                            "name": "Once daily (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "79",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "1.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "85",
                      "when": {
                        "localId": "83",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "81",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "82",
                            "name": "Twice a day (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "84",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "2.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "90",
                      "when": {
                        "localId": "88",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "86",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "87",
                            "name": "Three times daily (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "89",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "3.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "95",
                      "when": {
                        "localId": "93",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "91",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "92",
                            "name": "Four times daily (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "94",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "4.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "100",
                      "when": {
                        "localId": "98",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "96",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "97",
                            "name": "Every four hours as required (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "99",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "6.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "105",
                      "when": {
                        "localId": "103",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "101",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "102",
                            "name": "Every two to four hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "104",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "12.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "110",
                      "when": {
                        "localId": "108",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "106",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "107",
                            "name": "Every twenty four hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "109",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "1.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "115",
                      "when": {
                        "localId": "113",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "111",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "112",
                            "name": "Every twelve hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "114",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "2.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "120",
                      "when": {
                        "localId": "118",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "116",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "117",
                            "name": "Every thirty six hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "119",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.67",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "125",
                      "when": {
                        "localId": "123",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "121",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "122",
                            "name": "Every eight hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "124",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "3.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "130",
                      "when": {
                        "localId": "128",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "126",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "127",
                            "name": "Every six hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "129",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "4.0",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "135",
                      "when": {
                        "localId": "133",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "131",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "132",
                            "name": "Every seventy two hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "134",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.34",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "140",
                      "when": {
                        "localId": "138",
                        "type": "Equivalent",
                        "operand": [
                          {
                            "localId": "136",
                            "name": "frequency",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "137",
                            "name": "Every forty eight hours (qualifier value)",
                            "type": "CodeRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "139",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.5",
                        "type": "Literal"
                      }
                    }
                  ],
                  "else": {
                    "asType": "{urn:hl7-org:elm-types:r1}Decimal",
                    "type": "As",
                    "operand": {
                      "localId": "141",
                      "type": "Null"
                    }
                  }
                },
                "operand": [
                  {
                    "name": "frequency",
                    "operandTypeSpecifier": {
                      "localId": "75",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "174",
                "name": "Prescriptions with MME",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "174",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Prescriptions with MME\"",
                            ":\n\t/*Using the MME calculated from the Opioid Medication Library and return the opioid code, opioid author datetime, opioid effective period, and the Conversion Factor*/\r\n\t"
                          ]
                        },
                        {
                          "r": "173",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "72",
                                  "s": [
                                    {
                                      "r": "71",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"OpioidMedications\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Opioid"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "let "
                                  ]
                                },
                                {
                                  "r": "145",
                                  "s": [
                                    {
                                      "value": [
                                        "dosesPerDay",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "144",
                                      "s": [
                                        {
                                          "value": [
                                            "\"DosesPerDay\"",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "74",
                                          "s": [
                                            {
                                              "r": "73",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Opioid"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "74",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "156",
                                  "s": [
                                    {
                                      "value": [
                                        "MME",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "155",
                                      "s": [
                                        {
                                          "value": [
                                            "singleton from "
                                          ]
                                        },
                                        {
                                          "r": "154",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "154",
                                              "s": [
                                                {
                                                  "r": "146",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "OpioidLogicLibrary"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "154",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"CalculateMorphineMilligramEquivalents\"",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "153",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "{ "
                                                          ]
                                                        },
                                                        {
                                                          "r": "152",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "{\r\n\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "rxNormCode",
                                                                    ": "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "148",
                                                                  "s": [
                                                                    {
                                                                      "r": "147",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "Opioid"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "148",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "code"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ",\r\n\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseQuantity",
                                                                    ": "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "150",
                                                                  "s": [
                                                                    {
                                                                      "r": "149",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "Opioid"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "150",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "dosage"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ",\r\n\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "dosesPerDay",
                                                                    ": "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "151",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "dosesPerDay"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "\r\n\t\t\t\t}"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " }"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t)"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t)"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "161",
                                  "s": [
                                    {
                                      "value": [
                                        "medPeriod",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "160",
                                      "s": [
                                        {
                                          "r": "158",
                                          "s": [
                                            {
                                              "r": "157",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Opioid"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "158",
                                              "s": [
                                                {
                                                  "value": [
                                                    "relevantPeriod"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\tintersect "
                                          ]
                                        },
                                        {
                                          "r": "159",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Measurement Period\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "172",
                              "s": [
                                {
                                  "value": [
                                    "return "
                                  ]
                                },
                                {
                                  "r": "171",
                                  "s": [
                                    {
                                      "value": [
                                        "{\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "rxNormCode",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "163",
                                          "s": [
                                            {
                                              "r": "162",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Opioid"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "163",
                                              "s": [
                                                {
                                                  "value": [
                                                    "code"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "authortime",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "165",
                                          "s": [
                                            {
                                              "r": "164",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Opioid"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "165",
                                              "s": [
                                                {
                                                  "value": [
                                                    "authorDatetime"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "effectivePeriod",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "166",
                                          "s": [
                                            {
                                              "value": [
                                                "medPeriod"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "conversionFactor",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "168",
                                          "s": [
                                            {
                                              "r": "167",
                                              "s": [
                                                {
                                                  "value": [
                                                    "MME"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "168",
                                              "s": [
                                                {
                                                  "value": [
                                                    "conversionFactor"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "MME",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "170",
                                          "s": [
                                            {
                                              "r": "169",
                                              "s": [
                                                {
                                                  "value": [
                                                    "MME"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "170",
                                              "s": [
                                                {
                                                  "value": [
                                                    "MME"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t}"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "173",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "72",
                      "alias": "Opioid",
                      "expression": {
                        "localId": "71",
                        "name": "OpioidMedications",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "let": [
                    {
                      "localId": "145",
                      "identifier": "dosesPerDay",
                      "expression": {
                        "localId": "144",
                        "name": "DosesPerDay",
                        "type": "FunctionRef",
                        "operand": [
                          {
                            "localId": "74",
                            "path": "frequency",
                            "scope": "Opioid",
                            "type": "Property"
                          }
                        ]
                      }
                    },
                    {
                      "localId": "156",
                      "identifier": "MME",
                      "expression": {
                        "localId": "155",
                        "type": "SingletonFrom",
                        "operand": {
                          "localId": "154",
                          "name": "CalculateMorphineMilligramEquivalents",
                          "libraryName": "OpioidLogicLibrary",
                          "type": "FunctionRef",
                          "operand": [
                            {
                              "localId": "153",
                              "type": "List",
                              "element": [
                                {
                                  "localId": "152",
                                  "type": "Tuple",
                                  "element": [
                                    {
                                      "name": "rxNormCode",
                                      "value": {
                                        "localId": "148",
                                        "path": "code",
                                        "scope": "Opioid",
                                        "type": "Property"
                                      }
                                    },
                                    {
                                      "name": "doseQuantity",
                                      "value": {
                                        "localId": "150",
                                        "path": "dosage",
                                        "scope": "Opioid",
                                        "type": "Property"
                                      }
                                    },
                                    {
                                      "name": "dosesPerDay",
                                      "value": {
                                        "localId": "151",
                                        "name": "dosesPerDay",
                                        "type": "QueryLetRef"
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      }
                    },
                    {
                      "localId": "161",
                      "identifier": "medPeriod",
                      "expression": {
                        "localId": "160",
                        "type": "Intersect",
                        "operand": [
                          {
                            "localId": "158",
                            "path": "relevantPeriod",
                            "scope": "Opioid",
                            "type": "Property"
                          },
                          {
                            "localId": "159",
                            "name": "Measurement Period",
                            "type": "ParameterRef"
                          }
                        ]
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "172",
                    "expression": {
                      "localId": "171",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "rxNormCode",
                          "value": {
                            "localId": "163",
                            "path": "code",
                            "scope": "Opioid",
                            "type": "Property"
                          }
                        },
                        {
                          "name": "authortime",
                          "value": {
                            "localId": "165",
                            "path": "authorDatetime",
                            "scope": "Opioid",
                            "type": "Property"
                          }
                        },
                        {
                          "name": "effectivePeriod",
                          "value": {
                            "localId": "166",
                            "name": "medPeriod",
                            "type": "QueryLetRef"
                          }
                        },
                        {
                          "name": "conversionFactor",
                          "value": {
                            "localId": "168",
                            "path": "conversionFactor",
                            "type": "Property",
                            "source": {
                              "localId": "167",
                              "name": "MME",
                              "type": "QueryLetRef"
                            }
                          }
                        },
                        {
                          "name": "MME",
                          "value": {
                            "localId": "170",
                            "path": "MME",
                            "type": "Property",
                            "source": {
                              "localId": "169",
                              "name": "MME",
                              "type": "QueryLetRef"
                            }
                          }
                        }
                      ]
                    }
                  }
                }
              },
              {
                "localId": "190",
                "name": "Prescription Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "190",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Prescription Days\"",
                            ":\n\t/*Using the values passed from the Prescription with MMEs definition, this definition creates a single list containing the days within the period*/\r\n\t"
                          ]
                        },
                        {
                          "r": "189",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "176",
                                  "s": [
                                    {
                                      "r": "175",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"Prescriptions with MME\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "ScriptMME"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "let "
                                  ]
                                },
                                {
                                  "r": "181",
                                  "s": [
                                    {
                                      "value": [
                                        "period",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "180",
                                      "s": [
                                        {
                                          "r": "177",
                                          "s": [
                                            {
                                              "value": [
                                                "Timing"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "180",
                                          "s": [
                                            {
                                              "value": [
                                                "\"DaysInPeriod\"",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "179",
                                              "s": [
                                                {
                                                  "r": "178",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "ScriptMME"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "179",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "effectivePeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "188",
                              "s": [
                                {
                                  "value": [
                                    "return "
                                  ]
                                },
                                {
                                  "r": "187",
                                  "s": [
                                    {
                                      "value": [
                                        "{\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "rxNormCode",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "183",
                                          "s": [
                                            {
                                              "r": "182",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ScriptMME"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "183",
                                              "s": [
                                                {
                                                  "value": [
                                                    "rxNormCode"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "days_period",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "184",
                                          "s": [
                                            {
                                              "value": [
                                                "period"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ", /* DaysInPeriod returns a list of Dates in the interval*/\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "MME",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "186",
                                          "s": [
                                            {
                                              "r": "185",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ScriptMME"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "186",
                                              "s": [
                                                {
                                                  "value": [
                                                    "MME"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t}"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "189",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "176",
                      "alias": "ScriptMME",
                      "expression": {
                        "localId": "175",
                        "name": "Prescriptions with MME",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "let": [
                    {
                      "localId": "181",
                      "identifier": "period",
                      "expression": {
                        "localId": "180",
                        "name": "DaysInPeriod",
                        "libraryName": "Timing",
                        "type": "FunctionRef",
                        "operand": [
                          {
                            "localId": "179",
                            "path": "effectivePeriod",
                            "scope": "ScriptMME",
                            "type": "Property"
                          }
                        ]
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "188",
                    "expression": {
                      "localId": "187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "rxNormCode",
                          "value": {
                            "localId": "183",
                            "path": "rxNormCode",
                            "scope": "ScriptMME",
                            "type": "Property"
                          }
                        },
                        {
                          "name": "days_period",
                          "value": {
                            "localId": "184",
                            "name": "period",
                            "type": "QueryLetRef"
                          }
                        },
                        {
                          "name": "MME",
                          "value": {
                            "localId": "186",
                            "path": "MME",
                            "scope": "ScriptMME",
                            "type": "Property"
                          }
                        }
                      ]
                    }
                  }
                }
              },
              {
                "localId": "206",
                "name": "MME Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "206",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"MME Days\"",
                            ":\n\t/*Using the rxNorm Code passed from the PrescriptionDays definition, and retun the number of days a medication was ordered*/\r\n\t"
                          ]
                        },
                        {
                          "r": "205",
                          "s": [
                            {
                              "value": [
                                "flatten "
                              ]
                            },
                            {
                              "r": "204",
                              "s": [
                                {
                                  "value": [
                                    "( "
                                  ]
                                },
                                {
                                  "r": "204",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "192",
                                          "s": [
                                            {
                                              "r": "191",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Prescription Days\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "PrescriptionDays"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "203",
                                      "s": [
                                        {
                                          "value": [
                                            "return all "
                                          ]
                                        },
                                        {
                                          "r": "202",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "202",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "194",
                                                      "s": [
                                                        {
                                                          "r": "193",
                                                          "s": [
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "PrescriptionDays",
                                                                    ".",
                                                                    "days_period"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "Days"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "201",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "return "
                                                      ]
                                                    },
                                                    {
                                                      "r": "200",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "{\r\n\t\t\t\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "rxNormCode",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "r": "196",
                                                              "s": [
                                                                {
                                                                  "r": "195",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "PrescriptionDays"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "196",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "rxNormCode"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ",\r\n\t\t\t\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Day",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "r": "197",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Days"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ",\r\n\t\t\t\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "MME",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "r": "199",
                                                              "s": [
                                                                {
                                                                  "r": "198",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "PrescriptionDays"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "199",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "MME"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\t\t}"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t)"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "205",
                  "type": "Flatten",
                  "operand": {
                    "localId": "204",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "192",
                        "alias": "PrescriptionDays",
                        "expression": {
                          "localId": "191",
                          "name": "Prescription Days",
                          "type": "ExpressionRef"
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "203",
                      "distinct": false,
                      "expression": {
                        "localId": "202",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "194",
                            "alias": "Days",
                            "expression": {
                              "localId": "193",
                              "path": "days_period",
                              "scope": "PrescriptionDays",
                              "type": "Property"
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "return": {
                          "localId": "201",
                          "expression": {
                            "localId": "200",
                            "type": "Tuple",
                            "element": [
                              {
                                "name": "rxNormCode",
                                "value": {
                                  "localId": "196",
                                  "path": "rxNormCode",
                                  "scope": "PrescriptionDays",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "Day",
                                "value": {
                                  "localId": "197",
                                  "name": "Days",
                                  "type": "AliasRef"
                                }
                              },
                              {
                                "name": "MME",
                                "value": {
                                  "localId": "199",
                                  "path": "MME",
                                  "scope": "PrescriptionDays",
                                  "type": "Property"
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              {
                "localId": "232",
                "name": "MME Sum Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "232",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"MME Sum Days\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "231",
                          "s": [
                            {
                              "value": [
                                "distinct "
                              ]
                            },
                            {
                              "r": "230",
                              "s": [
                                {
                                  "s": [
                                    {
                                      "r": "213",
                                      "s": [
                                        {
                                          "r": "212",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "212",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "208",
                                                      "s": [
                                                        {
                                                          "r": "207",
                                                          "s": [
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"MME Days\""
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "MMEDays"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "211",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "return "
                                                      ]
                                                    },
                                                    {
                                                      "r": "210",
                                                      "s": [
                                                        {
                                                          "r": "209",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "MMEDays"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "210",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Day"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "Days"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "let "
                                      ]
                                    },
                                    {
                                      "r": "225",
                                      "s": [
                                        {
                                          "value": [
                                            "totalMME",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "224",
                                          "s": [
                                            {
                                              "value": [
                                                "Sum",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "223",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "215",
                                                      "s": [
                                                        {
                                                          "r": "214",
                                                          "s": [
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"MME Days\""
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "Total"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "219",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "where "
                                                      ]
                                                    },
                                                    {
                                                      "r": "219",
                                                      "s": [
                                                        {
                                                          "r": "217",
                                                          "s": [
                                                            {
                                                              "r": "216",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Total"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "217",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Day"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "same day as",
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "218",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Days"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "222",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "return all "
                                                      ]
                                                    },
                                                    {
                                                      "r": "221",
                                                      "s": [
                                                        {
                                                          "r": "220",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Total"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "221",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "MME"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t)"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "229",
                                  "s": [
                                    {
                                      "value": [
                                        "return "
                                      ]
                                    },
                                    {
                                      "r": "228",
                                      "s": [
                                        {
                                          "value": [
                                            "{\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "Day",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "226",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Days"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "totalMME",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "227",
                                              "s": [
                                                {
                                                  "value": [
                                                    "totalMME"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t}"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "231",
                  "type": "Distinct",
                  "operand": {
                    "localId": "230",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "213",
                        "alias": "Days",
                        "expression": {
                          "localId": "212",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "208",
                              "alias": "MMEDays",
                              "expression": {
                                "localId": "207",
                                "name": "MME Days",
                                "type": "ExpressionRef"
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "return": {
                            "localId": "211",
                            "expression": {
                              "localId": "210",
                              "path": "Day",
                              "scope": "MMEDays",
                              "type": "Property"
                            }
                          }
                        }
                      }
                    ],
                    "let": [
                      {
                        "localId": "225",
                        "identifier": "totalMME",
                        "expression": {
                          "localId": "224",
                          "type": "Sum",
                          "source": {
                            "localId": "223",
                            "type": "Query",
                            "source": [
                              {
                                "localId": "215",
                                "alias": "Total",
                                "expression": {
                                  "localId": "214",
                                  "name": "MME Days",
                                  "type": "ExpressionRef"
                                }
                              }
                            ],
                            "relationship": [

                            ],
                            "where": {
                              "localId": "219",
                              "precision": "Day",
                              "type": "SameAs",
                              "operand": [
                                {
                                  "localId": "217",
                                  "path": "Day",
                                  "scope": "Total",
                                  "type": "Property"
                                },
                                {
                                  "localId": "218",
                                  "name": "Days",
                                  "type": "AliasRef"
                                }
                              ]
                            },
                            "return": {
                              "localId": "222",
                              "distinct": false,
                              "expression": {
                                "localId": "221",
                                "path": "MME",
                                "scope": "Total",
                                "type": "Property"
                              }
                            }
                          }
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "229",
                      "expression": {
                        "localId": "228",
                        "type": "Tuple",
                        "element": [
                          {
                            "name": "Day",
                            "value": {
                              "localId": "226",
                              "name": "Days",
                              "type": "AliasRef"
                            }
                          },
                          {
                            "name": "totalMME",
                            "value": {
                              "localId": "227",
                              "name": "totalMME",
                              "type": "QueryLetRef"
                            }
                          }
                        ]
                      }
                    }
                  }
                }
              },
              {
                "localId": "244",
                "name": "MME Greater Than 90",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "244",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"MME Greater Than 90\"",
                            ":\n\t/*Using the MME interval passed from the \"MMEIntervals\" definition, count the number of instances where the MME interval is greater than 90 days*/\r\n\t"
                          ]
                        },
                        {
                          "r": "243",
                          "s": [
                            {
                              "r": "241",
                              "s": [
                                {
                                  "value": [
                                    "Count",
                                    "("
                                  ]
                                },
                                {
                                  "r": "240",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "234",
                                          "s": [
                                            {
                                              "r": "233",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"MME Sum Days\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "MMESum"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "239",
                                      "s": [
                                        {
                                          "value": [
                                            "where "
                                          ]
                                        },
                                        {
                                          "r": "239",
                                          "s": [
                                            {
                                              "r": "237",
                                              "s": [
                                                {
                                                  "r": "236",
                                                  "s": [
                                                    {
                                                      "r": "235",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "MMESum"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "236",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "totalMME"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "237",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "value"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                ">=",
                                                " ",
                                                "90"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">=",
                                " ",
                                "90"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "243",
                  "type": "GreaterOrEqual",
                  "operand": [
                    {
                      "localId": "241",
                      "type": "Count",
                      "source": {
                        "localId": "240",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "234",
                            "alias": "MMESum",
                            "expression": {
                              "localId": "233",
                              "name": "MME Sum Days",
                              "type": "ExpressionRef"
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "where": {
                          "localId": "239",
                          "type": "GreaterOrEqual",
                          "operand": [
                            {
                              "localId": "237",
                              "path": "value",
                              "type": "Property",
                              "source": {
                                "localId": "236",
                                "path": "totalMME",
                                "scope": "MMESum",
                                "type": "Property"
                              }
                            },
                            {
                              "type": "ToDecimal",
                              "operand": {
                                "localId": "238",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "90",
                                "type": "Literal"
                              }
                            }
                          ]
                        }
                      }
                    },
                    {
                      "localId": "242",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "90",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "246",
                "name": "Numerator",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "246",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Numerator\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "245",
                          "s": [
                            {
                              "value": [
                                "\"MME Greater Than 90\""
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "245",
                  "name": "MME Greater Than 90",
                  "type": "ExpressionRef"
                }
              },
              {
                "localId": "272",
                "name": "Encounters during Measurement Period",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "272",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Encounters during Measurement Period\"",
                            ":\n\t/*A Face to Face Interaction, Office Visit, Preventative Care Services  Established Office Visit for 18 years and over, Preventative Care Services - Initial Office Visit for 18 years and over, Outpatient Consultation or Preventative Care Services - Other encounter performed during the Measurement Period*/\r\n\t"
                          ]
                        },
                        {
                          "r": "271",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "266",
                                  "s": [
                                    {
                                      "r": "265",
                                      "s": [
                                        {
                                          "value": [
                                            "( "
                                          ]
                                        },
                                        {
                                          "r": "265",
                                          "s": [
                                            {
                                              "r": "263",
                                              "s": [
                                                {
                                                  "r": "261",
                                                  "s": [
                                                    {
                                                      "r": "259",
                                                      "s": [
                                                        {
                                                          "r": "257",
                                                          "s": [
                                                            {
                                                              "r": "255",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "[",
                                                                    "\"Encounter, Performed\"",
                                                                    ": "
                                                                  ]
                                                                },
                                                                {
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "\"Face to Face Interaction - No ED\""
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "]"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "\r\n\t\tunion "
                                                              ]
                                                            },
                                                            {
                                                              "r": "256",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "[",
                                                                    "\"Encounter, Performed\"",
                                                                    ": "
                                                                  ]
                                                                },
                                                                {
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "\"Office Visit\""
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "]"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\tunion "
                                                          ]
                                                        },
                                                        {
                                                          "r": "258",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "[",
                                                                "\"Encounter, Performed\"",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"Preventive Care Services - Established Office Visit, 18 and Up\""
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "]"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\tunion "
                                                      ]
                                                    },
                                                    {
                                                      "r": "260",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "[",
                                                            "\"Encounter, Performed\"",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Preventive Care Services-Initial Office Visit, 18 and Up\""
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "]"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\tunion "
                                                  ]
                                                },
                                                {
                                                  "r": "262",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "[",
                                                        "\"Encounter, Performed\"",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Outpatient Consultation\""
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "]"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\tunion "
                                              ]
                                            },
                                            {
                                              "r": "264",
                                              "s": [
                                                {
                                                  "value": [
                                                    "[",
                                                    "\"Encounter, Performed\"",
                                                    ": "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Preventive Care Services - Other\""
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "]"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " )"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Encounter"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "270",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "270",
                                  "s": [
                                    {
                                      "r": "268",
                                      "s": [
                                        {
                                          "r": "267",
                                          "s": [
                                            {
                                              "value": [
                                                "Encounter"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "268",
                                          "s": [
                                            {
                                              "value": [
                                                "relevantPeriod"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "during",
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "269",
                                      "s": [
                                        {
                                          "value": [
                                            "\"Measurement Period\""
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "271",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "266",
                      "alias": "Encounter",
                      "expression": {
                        "localId": "265",
                        "type": "Union",
                        "operand": [
                          {
                            "localId": "261",
                            "type": "Union",
                            "operand": [
                              {
                                "localId": "257",
                                "type": "Union",
                                "operand": [
                                  {
                                    "localId": "255",
                                    "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                    "templateId": "PositiveEncounterPerformed",
                                    "codeProperty": "code",
                                    "type": "Retrieve",
                                    "codes": {
                                      "name": "Face to Face Interaction - No ED",
                                      "type": "ValueSetRef"
                                    }
                                  },
                                  {
                                    "localId": "256",
                                    "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                    "templateId": "PositiveEncounterPerformed",
                                    "codeProperty": "code",
                                    "type": "Retrieve",
                                    "codes": {
                                      "name": "Office Visit",
                                      "type": "ValueSetRef"
                                    }
                                  }
                                ]
                              },
                              {
                                "type": "Union",
                                "operand": [
                                  {
                                    "localId": "258",
                                    "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                    "templateId": "PositiveEncounterPerformed",
                                    "codeProperty": "code",
                                    "type": "Retrieve",
                                    "codes": {
                                      "name": "Preventive Care Services - Established Office Visit, 18 and Up",
                                      "type": "ValueSetRef"
                                    }
                                  },
                                  {
                                    "localId": "260",
                                    "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                    "templateId": "PositiveEncounterPerformed",
                                    "codeProperty": "code",
                                    "type": "Retrieve",
                                    "codes": {
                                      "name": "Preventive Care Services-Initial Office Visit, 18 and Up",
                                      "type": "ValueSetRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "Union",
                            "operand": [
                              {
                                "localId": "262",
                                "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                "templateId": "PositiveEncounterPerformed",
                                "codeProperty": "code",
                                "type": "Retrieve",
                                "codes": {
                                  "name": "Outpatient Consultation",
                                  "type": "ValueSetRef"
                                }
                              },
                              {
                                "localId": "264",
                                "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                "templateId": "PositiveEncounterPerformed",
                                "codeProperty": "code",
                                "type": "Retrieve",
                                "codes": {
                                  "name": "Preventive Care Services - Other",
                                  "type": "ValueSetRef"
                                }
                              }
                            ]
                          }
                        ]
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "270",
                    "type": "IncludedIn",
                    "operand": [
                      {
                        "localId": "268",
                        "path": "relevantPeriod",
                        "scope": "Encounter",
                        "type": "Property"
                      },
                      {
                        "localId": "269",
                        "name": "Measurement Period",
                        "type": "ParameterRef"
                      }
                    ]
                  }
                }
              },
              {
                "localId": "286",
                "name": "Opioid Med Periods In Measurement Period",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "286",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Opioid Med Periods In Measurement Period\"",
                            ":\r\n\t/* Creates a list of tuples that have the medication and the period of the medication in the measurement period. */\r\n\t"
                          ]
                        },
                        {
                          "r": "285",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "277",
                                  "s": [
                                    {
                                      "r": "276",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"OpioidMedications\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Opioid"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "284",
                              "s": [
                                {
                                  "value": [
                                    "return "
                                  ]
                                },
                                {
                                  "r": "283",
                                  "s": [
                                    {
                                      "value": [
                                        "{\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "periodInMP",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "281",
                                          "s": [
                                            {
                                              "r": "279",
                                              "s": [
                                                {
                                                  "r": "278",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "Opioid"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "279",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "relevantPeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " intersect "
                                              ]
                                            },
                                            {
                                              "r": "280",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Measurement Period\""
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "med",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "282",
                                          "s": [
                                            {
                                              "value": [
                                                "Opioid"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t}"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "285",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "277",
                      "alias": "Opioid",
                      "expression": {
                        "localId": "276",
                        "name": "OpioidMedications",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "284",
                    "expression": {
                      "localId": "283",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "periodInMP",
                          "value": {
                            "localId": "281",
                            "type": "Intersect",
                            "operand": [
                              {
                                "localId": "279",
                                "path": "relevantPeriod",
                                "scope": "Opioid",
                                "type": "Property"
                              },
                              {
                                "localId": "280",
                                "name": "Measurement Period",
                                "type": "ParameterRef"
                              }
                            ]
                          }
                        },
                        {
                          "name": "med",
                          "value": {
                            "localId": "282",
                            "name": "Opioid",
                            "type": "AliasRef"
                          }
                        }
                      ]
                    }
                  }
                }
              },
              {
                "localId": "294",
                "name": "Opioid Periods",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "294",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Opioid Periods\"",
                            ":\r\n\t/* All intervals of opioid medications, clamped to the measurement period, collapsed */\r\n\t"
                          ]
                        },
                        {
                          "r": "293",
                          "s": [
                            {
                              "value": [
                                "collapse"
                              ]
                            },
                            {
                              "r": "292",
                              "s": [
                                {
                                  "value": [
                                    "("
                                  ]
                                },
                                {
                                  "r": "292",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "288",
                                          "s": [
                                            {
                                              "r": "287",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Opioid Med Periods In Measurement Period\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "Opioid"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "291",
                                      "s": [
                                        {
                                          "value": [
                                            "return "
                                          ]
                                        },
                                        {
                                          "r": "290",
                                          "s": [
                                            {
                                              "r": "289",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Opioid"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "290",
                                              "s": [
                                                {
                                                  "value": [
                                                    "periodInMP"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "293",
                  "type": "Collapse",
                  "operand": [
                    {
                      "localId": "292",
                      "type": "Query",
                      "source": [
                        {
                          "localId": "288",
                          "alias": "Opioid",
                          "expression": {
                            "localId": "287",
                            "name": "Opioid Med Periods In Measurement Period",
                            "type": "ExpressionRef"
                          }
                        }
                      ],
                      "relationship": [

                      ],
                      "return": {
                        "localId": "291",
                        "expression": {
                          "localId": "290",
                          "path": "periodInMP",
                          "scope": "Opioid",
                          "type": "Property"
                        }
                      }
                    },
                    {
                      "resultTypeName": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "Null"
                    }
                  ]
                }
              },
              {
                "localId": "316",
                "name": "Gaps In Active Opioid Period",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "316",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Gaps In Active Opioid Period\"",
                            ":\r\n\t/* The list of all gaps in the overall opioid period. */\r\n\t"
                          ]
                        },
                        {
                          "r": "315",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "296",
                                  "s": [
                                    {
                                      "r": "295",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"Opioid Periods\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Period"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "let "
                                  ]
                                },
                                {
                                  "r": "302",
                                  "s": [
                                    {
                                      "value": [
                                        "NextIndex",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "301",
                                      "s": [
                                        {
                                          "r": "299",
                                          "s": [
                                            {
                                              "value": [
                                                "IndexOf",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "297",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Opioid Periods\""
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", "
                                              ]
                                            },
                                            {
                                              "r": "298",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Period"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " + ",
                                            "1"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "306",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "306",
                                  "s": [
                                    {
                                      "r": "303",
                                      "s": [
                                        {
                                          "value": [
                                            "NextIndex"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "<",
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "305",
                                      "s": [
                                        {
                                          "value": [
                                            "Length",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "304",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Opioid Periods\""
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "314",
                              "s": [
                                {
                                  "value": [
                                    "return "
                                  ]
                                },
                                {
                                  "r": "313",
                                  "s": [
                                    {
                                      "value": [
                                        "Interval["
                                      ]
                                    },
                                    {
                                      "r": "308",
                                      "s": [
                                        {
                                          "value": [
                                            "end of "
                                          ]
                                        },
                                        {
                                          "r": "307",
                                          "s": [
                                            {
                                              "value": [
                                                "Period"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ", "
                                      ]
                                    },
                                    {
                                      "r": "312",
                                      "s": [
                                        {
                                          "value": [
                                            "start of "
                                          ]
                                        },
                                        {
                                          "r": "311",
                                          "s": [
                                            {
                                              "r": "309",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Opioid Periods\""
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "["
                                              ]
                                            },
                                            {
                                              "r": "310",
                                              "s": [
                                                {
                                                  "value": [
                                                    "NextIndex"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "]"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "]"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "315",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "296",
                      "alias": "Period",
                      "expression": {
                        "localId": "295",
                        "name": "Opioid Periods",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "let": [
                    {
                      "localId": "302",
                      "identifier": "NextIndex",
                      "expression": {
                        "localId": "301",
                        "type": "Add",
                        "operand": [
                          {
                            "localId": "299",
                            "type": "IndexOf",
                            "source": {
                              "localId": "297",
                              "name": "Opioid Periods",
                              "type": "ExpressionRef"
                            },
                            "element": {
                              "localId": "298",
                              "name": "Period",
                              "type": "AliasRef"
                            }
                          },
                          {
                            "localId": "300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1",
                            "type": "Literal"
                          }
                        ]
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "306",
                    "type": "Less",
                    "operand": [
                      {
                        "localId": "303",
                        "name": "NextIndex",
                        "type": "QueryLetRef"
                      },
                      {
                        "localId": "305",
                        "type": "Length",
                        "operand": {
                          "localId": "304",
                          "name": "Opioid Periods",
                          "type": "ExpressionRef"
                        }
                      }
                    ]
                  },
                  "return": {
                    "localId": "314",
                    "expression": {
                      "localId": "313",
                      "lowClosed": true,
                      "highClosed": true,
                      "type": "Interval",
                      "low": {
                        "localId": "308",
                        "type": "End",
                        "operand": {
                          "localId": "307",
                          "name": "Period",
                          "type": "AliasRef"
                        }
                      },
                      "high": {
                        "localId": "312",
                        "type": "Start",
                        "operand": {
                          "localId": "311",
                          "type": "Indexer",
                          "operand": [
                            {
                              "localId": "309",
                              "name": "Opioid Periods",
                              "type": "ExpressionRef"
                            },
                            {
                              "localId": "310",
                              "name": "NextIndex",
                              "type": "QueryLetRef"
                            }
                          ]
                        }
                      }
                    }
                  }
                }
              },
              {
                "localId": "324",
                "name": "Gaps Greater Than 7 Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "324",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Gaps Greater Than 7 Days\"",
                            ":\r\n\t/* The list of gaps in the overall period that are greater than 7 days */\r\n\t"
                          ]
                        },
                        {
                          "r": "323",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "318",
                                  "s": [
                                    {
                                      "r": "317",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"Gaps In Active Opioid Period\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Gap"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "322",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "322",
                                  "s": [
                                    {
                                      "r": "320",
                                      "s": [
                                        {
                                          "value": [
                                            "duration in days of "
                                          ]
                                        },
                                        {
                                          "r": "319",
                                          "s": [
                                            {
                                              "value": [
                                                "Gap"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        ">",
                                        " ",
                                        "7"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "323",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "318",
                      "alias": "Gap",
                      "expression": {
                        "localId": "317",
                        "name": "Gaps In Active Opioid Period",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "322",
                    "type": "Greater",
                    "operand": [
                      {
                        "localId": "320",
                        "precision": "Day",
                        "type": "DurationBetween",
                        "operand": [
                          {
                            "type": "Start",
                            "operand": {
                              "localId": "319",
                              "name": "Gap",
                              "type": "AliasRef"
                            }
                          },
                          {
                            "type": "End",
                            "operand": {
                              "localId": "319",
                              "name": "Gap",
                              "type": "AliasRef"
                            }
                          }
                        ]
                      },
                      {
                        "localId": "321",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7",
                        "type": "Literal"
                      }
                    ]
                  }
                }
              },
              {
                "localId": "350",
                "name": "Overall Active Opioid Period",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "350",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Overall Active Opioid Period\"",
                            ":\r\n\t/* The overall period of opioid medications. start of first to end of last */\r\n\t"
                          ]
                        },
                        {
                          "r": "349",
                          "s": [
                            {
                              "value": [
                                "Interval[\r\n\t\t"
                              ]
                            },
                            {
                              "r": "338",
                              "s": [
                                {
                                  "value": [
                                    "start of "
                                  ]
                                },
                                {
                                  "r": "337",
                                  "s": [
                                    {
                                      "r": "336",
                                      "s": [
                                        {
                                          "value": [
                                            "First",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "335",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "330",
                                                  "s": [
                                                    {
                                                      "r": "329",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Opioid Med Periods In Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "OpioidPeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " "
                                              ]
                                            },
                                            {
                                              "r": "334",
                                              "s": [
                                                {
                                                  "value": [
                                                    "sort by "
                                                  ]
                                                },
                                                {
                                                  "r": "333",
                                                  "s": [
                                                    {
                                                      "r": "332",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "start of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "331",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "periodInMP"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "337",
                                      "s": [
                                        {
                                          "value": [
                                            "periodInMP"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ",\r\n\t\t"
                              ]
                            },
                            {
                              "r": "348",
                              "s": [
                                {
                                  "value": [
                                    "end of "
                                  ]
                                },
                                {
                                  "r": "347",
                                  "s": [
                                    {
                                      "r": "346",
                                      "s": [
                                        {
                                          "value": [
                                            "Last",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "345",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "340",
                                                  "s": [
                                                    {
                                                      "r": "339",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Opioid Med Periods In Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "OpioidPeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " "
                                              ]
                                            },
                                            {
                                              "r": "344",
                                              "s": [
                                                {
                                                  "value": [
                                                    "sort by "
                                                  ]
                                                },
                                                {
                                                  "r": "343",
                                                  "s": [
                                                    {
                                                      "r": "342",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "end of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "341",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "periodInMP"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "347",
                                      "s": [
                                        {
                                          "value": [
                                            "periodInMP"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "349",
                  "lowClosed": true,
                  "highClosed": true,
                  "type": "Interval",
                  "low": {
                    "localId": "338",
                    "type": "Start",
                    "operand": {
                      "localId": "337",
                      "path": "periodInMP",
                      "type": "Property",
                      "source": {
                        "localId": "336",
                        "type": "First",
                        "source": {
                          "localId": "335",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "330",
                              "alias": "OpioidPeriod",
                              "expression": {
                                "localId": "329",
                                "name": "Opioid Med Periods In Measurement Period",
                                "type": "ExpressionRef"
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "sort": {
                            "localId": "334",
                            "by": [
                              {
                                "localId": "333",
                                "direction": "asc",
                                "type": "ByExpression",
                                "expression": {
                                  "localId": "332",
                                  "type": "Start",
                                  "operand": {
                                    "localId": "331",
                                    "name": "periodInMP",
                                    "type": "IdentifierRef"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  },
                  "high": {
                    "localId": "348",
                    "type": "End",
                    "operand": {
                      "localId": "347",
                      "path": "periodInMP",
                      "type": "Property",
                      "source": {
                        "localId": "346",
                        "type": "Last",
                        "source": {
                          "localId": "345",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "340",
                              "alias": "OpioidPeriod",
                              "expression": {
                                "localId": "339",
                                "name": "Opioid Med Periods In Measurement Period",
                                "type": "ExpressionRef"
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "sort": {
                            "localId": "344",
                            "by": [
                              {
                                "localId": "343",
                                "direction": "asc",
                                "type": "ByExpression",
                                "expression": {
                                  "localId": "342",
                                  "type": "End",
                                  "operand": {
                                    "localId": "341",
                                    "name": "periodInMP",
                                    "type": "IdentifierRef"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  }
                }
              },
              {
                "localId": "390",
                "name": "Periods With Allowed Gaps",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "390",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Periods With Allowed Gaps\"",
                            ":\r\n\t/* The lists of periods with allowed gaps. This uses \"Gaps Greater Than 7 Days\" to construct the periods. */\r\n\t"
                          ]
                        },
                        {
                          "r": "389",
                          "s": [
                            {
                              "value": [
                                "if "
                              ]
                            },
                            {
                              "r": "328",
                              "s": [
                                {
                                  "r": "326",
                                  "s": [
                                    {
                                      "value": [
                                        "Length",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "325",
                                      "s": [
                                        {
                                          "value": [
                                            "\"Gaps Greater Than 7 Days\""
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " ",
                                    "<",
                                    " ",
                                    "1"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t/* If there are no gaps, use the overall period */\r\n\t\tthen "
                              ]
                            },
                            {
                              "r": "352",
                              "s": [
                                {
                                  "value": [
                                    "{ "
                                  ]
                                },
                                {
                                  "r": "351",
                                  "s": [
                                    {
                                      "value": [
                                        "\"Overall Active Opioid Period\""
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " }"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\telse \r\n\t\t\t/* First interval from start of overall period to first gap */\r\n\t\t\t"
                              ]
                            },
                            {
                              "r": "388",
                              "s": [
                                {
                                  "r": "360",
                                  "s": [
                                    {
                                      "value": [
                                        "{ "
                                      ]
                                    },
                                    {
                                      "r": "359",
                                      "s": [
                                        {
                                          "value": [
                                            "Interval["
                                          ]
                                        },
                                        {
                                          "r": "354",
                                          "s": [
                                            {
                                              "value": [
                                                "start of "
                                              ]
                                            },
                                            {
                                              "r": "353",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Overall Active Opioid Period\""
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ", "
                                          ]
                                        },
                                        {
                                          "r": "358",
                                          "s": [
                                            {
                                              "value": [
                                                "start of "
                                              ]
                                            },
                                            {
                                              "r": "357",
                                              "s": [
                                                {
                                                  "r": "355",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Gaps Greater Than 7 Days\""
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "[",
                                                    "0",
                                                    "]"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "]"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " }"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " union \r\n\t\t\t/* Rest of intervals. Foreach: start at end of current gap, end at end of next gap or end of overall period */\r\n\t\t\t"
                                  ]
                                },
                                {
                                  "r": "387",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "362",
                                          "s": [
                                            {
                                              "r": "361",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Gaps Greater Than 7 Days\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "Gap"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "let "
                                          ]
                                        },
                                        {
                                          "r": "368",
                                          "s": [
                                            {
                                              "value": [
                                                "NextGapIndex",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "367",
                                              "s": [
                                                {
                                                  "r": "365",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "IndexOf",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "363",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Gaps Greater Than 7 Days\""
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ", "
                                                      ]
                                                    },
                                                    {
                                                      "r": "364",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Gap"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " + ",
                                                    "1"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "386",
                                      "s": [
                                        {
                                          "value": [
                                            "return "
                                          ]
                                        },
                                        {
                                          "r": "385",
                                          "s": [
                                            {
                                              "value": [
                                                "if "
                                              ]
                                            },
                                            {
                                              "r": "372",
                                              "s": [
                                                {
                                                  "r": "369",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "NextGapIndex"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "<",
                                                    " "
                                                  ]
                                                },
                                                {
                                                  "r": "371",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "Length",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "370",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Gaps Greater Than 7 Days\""
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t\tthen "
                                              ]
                                            },
                                            {
                                              "r": "379",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Interval["
                                                  ]
                                                },
                                                {
                                                  "r": "374",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "end of "
                                                      ]
                                                    },
                                                    {
                                                      "r": "373",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Gap"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "378",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "start of "
                                                      ]
                                                    },
                                                    {
                                                      "r": "377",
                                                      "s": [
                                                        {
                                                          "r": "375",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Gaps Greater Than 7 Days\""
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "["
                                                          ]
                                                        },
                                                        {
                                                          "r": "376",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "NextGapIndex"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "]"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "]"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t\telse "
                                              ]
                                            },
                                            {
                                              "r": "384",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Interval["
                                                  ]
                                                },
                                                {
                                                  "r": "381",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "end of "
                                                      ]
                                                    },
                                                    {
                                                      "r": "380",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Gap"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "383",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "end of "
                                                      ]
                                                    },
                                                    {
                                                      "r": "382",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Overall Active Opioid Period\""
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "]"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "389",
                  "type": "If",
                  "condition": {
                    "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                    "type": "As",
                    "operand": {
                      "localId": "328",
                      "type": "Less",
                      "operand": [
                        {
                          "localId": "326",
                          "type": "Length",
                          "operand": {
                            "localId": "325",
                            "name": "Gaps Greater Than 7 Days",
                            "type": "ExpressionRef"
                          }
                        },
                        {
                          "localId": "327",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "1",
                          "type": "Literal"
                        }
                      ]
                    }
                  },
                  "then": {
                    "localId": "352",
                    "type": "List",
                    "element": [
                      {
                        "localId": "351",
                        "name": "Overall Active Opioid Period",
                        "type": "ExpressionRef"
                      }
                    ]
                  },
                  "else": {
                    "localId": "388",
                    "type": "Union",
                    "operand": [
                      {
                        "localId": "360",
                        "type": "List",
                        "element": [
                          {
                            "localId": "359",
                            "lowClosed": true,
                            "highClosed": true,
                            "type": "Interval",
                            "low": {
                              "localId": "354",
                              "type": "Start",
                              "operand": {
                                "localId": "353",
                                "name": "Overall Active Opioid Period",
                                "type": "ExpressionRef"
                              }
                            },
                            "high": {
                              "localId": "358",
                              "type": "Start",
                              "operand": {
                                "localId": "357",
                                "type": "Indexer",
                                "operand": [
                                  {
                                    "localId": "355",
                                    "name": "Gaps Greater Than 7 Days",
                                    "type": "ExpressionRef"
                                  },
                                  {
                                    "localId": "356",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "0",
                                    "type": "Literal"
                                  }
                                ]
                              }
                            }
                          }
                        ]
                      },
                      {
                        "localId": "387",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "362",
                            "alias": "Gap",
                            "expression": {
                              "localId": "361",
                              "name": "Gaps Greater Than 7 Days",
                              "type": "ExpressionRef"
                            }
                          }
                        ],
                        "let": [
                          {
                            "localId": "368",
                            "identifier": "NextGapIndex",
                            "expression": {
                              "localId": "367",
                              "type": "Add",
                              "operand": [
                                {
                                  "localId": "365",
                                  "type": "IndexOf",
                                  "source": {
                                    "localId": "363",
                                    "name": "Gaps Greater Than 7 Days",
                                    "type": "ExpressionRef"
                                  },
                                  "element": {
                                    "localId": "364",
                                    "name": "Gap",
                                    "type": "AliasRef"
                                  }
                                },
                                {
                                  "localId": "366",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "1",
                                  "type": "Literal"
                                }
                              ]
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "return": {
                          "localId": "386",
                          "expression": {
                            "localId": "385",
                            "type": "If",
                            "condition": {
                              "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                              "type": "As",
                              "operand": {
                                "localId": "372",
                                "type": "Less",
                                "operand": [
                                  {
                                    "localId": "369",
                                    "name": "NextGapIndex",
                                    "type": "QueryLetRef"
                                  },
                                  {
                                    "localId": "371",
                                    "type": "Length",
                                    "operand": {
                                      "localId": "370",
                                      "name": "Gaps Greater Than 7 Days",
                                      "type": "ExpressionRef"
                                    }
                                  }
                                ]
                              }
                            },
                            "then": {
                              "localId": "379",
                              "lowClosed": true,
                              "highClosed": true,
                              "type": "Interval",
                              "low": {
                                "localId": "374",
                                "type": "End",
                                "operand": {
                                  "localId": "373",
                                  "name": "Gap",
                                  "type": "AliasRef"
                                }
                              },
                              "high": {
                                "localId": "378",
                                "type": "Start",
                                "operand": {
                                  "localId": "377",
                                  "type": "Indexer",
                                  "operand": [
                                    {
                                      "localId": "375",
                                      "name": "Gaps Greater Than 7 Days",
                                      "type": "ExpressionRef"
                                    },
                                    {
                                      "localId": "376",
                                      "name": "NextGapIndex",
                                      "type": "QueryLetRef"
                                    }
                                  ]
                                }
                              }
                            },
                            "else": {
                              "localId": "384",
                              "lowClosed": true,
                              "highClosed": true,
                              "type": "Interval",
                              "low": {
                                "localId": "381",
                                "type": "End",
                                "operand": {
                                  "localId": "380",
                                  "name": "Gap",
                                  "type": "AliasRef"
                                }
                              },
                              "high": {
                                "localId": "383",
                                "type": "End",
                                "operand": {
                                  "localId": "382",
                                  "name": "Overall Active Opioid Period",
                                  "type": "ExpressionRef"
                                }
                              }
                            }
                          }
                        }
                      }
                    ]
                  }
                }
              },
              {
                "localId": "425",
                "name": "Cumulative Duration",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "425",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Cumulative Duration\"",
                            "(",
                            "Periods",
                            " "
                          ]
                        },
                        {
                          "r": "416",
                          "s": [
                            {
                              "value": [
                                "List<"
                              ]
                            },
                            {
                              "r": "415",
                              "s": [
                                {
                                  "value": [
                                    "Interval<"
                                  ]
                                },
                                {
                                  "r": "414",
                                  "s": [
                                    {
                                      "value": [
                                        "DateTime"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ">"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "424",
                          "s": [
                            {
                              "r": "424",
                              "s": [
                                {
                                  "value": [
                                    "Sum",
                                    "("
                                  ]
                                },
                                {
                                  "r": "423",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "419",
                                          "s": [
                                            {
                                              "r": "418",
                                              "s": [
                                                {
                                                  "value": [
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "418",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "collapse"
                                                      ]
                                                    },
                                                    {
                                                      "r": "417",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "417",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Periods"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "Period"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t"
                                      ]
                                    },
                                    {
                                      "r": "422",
                                      "s": [
                                        {
                                          "value": [
                                            "return all "
                                          ]
                                        },
                                        {
                                          "r": "421",
                                          "s": [
                                            {
                                              "value": [
                                                "duration in days of "
                                              ]
                                            },
                                            {
                                              "r": "420",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Period"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "424",
                  "type": "Sum",
                  "source": {
                    "localId": "423",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "419",
                        "alias": "Period",
                        "expression": {
                          "localId": "418",
                          "type": "Collapse",
                          "operand": [
                            {
                              "localId": "417",
                              "name": "Periods",
                              "type": "OperandRef"
                            },
                            {
                              "resultTypeName": "{urn:hl7-org:elm-types:r1}Quantity",
                              "type": "Null"
                            }
                          ]
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "422",
                      "distinct": false,
                      "expression": {
                        "localId": "421",
                        "precision": "Day",
                        "type": "DurationBetween",
                        "operand": [
                          {
                            "type": "Start",
                            "operand": {
                              "localId": "420",
                              "name": "Period",
                              "type": "AliasRef"
                            }
                          },
                          {
                            "type": "End",
                            "operand": {
                              "localId": "420",
                              "name": "Period",
                              "type": "AliasRef"
                            }
                          }
                        ]
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Periods",
                    "operandTypeSpecifier": {
                      "localId": "416",
                      "type": "ListTypeSpecifier",
                      "elementType": {
                        "localId": "415",
                        "type": "IntervalTypeSpecifier",
                        "pointType": {
                          "localId": "414",
                          "name": "{urn:hl7-org:elm-types:r1}DateTime",
                          "type": "NamedTypeSpecifier"
                        }
                      }
                    }
                  }
                ]
              },
              {
                "localId": "430",
                "name": "Periods With Allowed Gaps With Meds and Durations",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "430",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Periods With Allowed Gaps With Meds and Durations\"",
                            ":\r\n\t/* List of each period with allowed gaps with the list of medications and the Cumulative Medication Duration for the\r\n\t\tmedications in period */\r\n\t"
                          ]
                        },
                        {
                          "r": "429",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "392",
                                  "s": [
                                    {
                                      "r": "391",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"Periods With Allowed Gaps\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Period"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "let "
                                  ]
                                },
                                {
                                  "r": "400",
                                  "s": [
                                    {
                                      "value": [
                                        "Meds",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "399",
                                      "s": [
                                        {
                                          "value": [
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "399",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "394",
                                                  "s": [
                                                    {
                                                      "r": "393",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Opioid Med Periods In Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "Opioid"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " "
                                              ]
                                            },
                                            {
                                              "r": "398",
                                              "s": [
                                                {
                                                  "value": [
                                                    "where "
                                                  ]
                                                },
                                                {
                                                  "r": "398",
                                                  "s": [
                                                    {
                                                      "r": "396",
                                                      "s": [
                                                        {
                                                          "r": "395",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Opioid"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "396",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "periodInMP"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "during",
                                                        " "
                                                      ]
                                                    },
                                                    {
                                                      "r": "397",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Period"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "428",
                              "s": [
                                {
                                  "value": [
                                    "return "
                                  ]
                                },
                                {
                                  "r": "427",
                                  "s": [
                                    {
                                      "value": [
                                        "{\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "period",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "401",
                                          "s": [
                                            {
                                              "value": [
                                                "Period"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "meds",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "407",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "403",
                                                  "s": [
                                                    {
                                                      "r": "402",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Meds"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "Med"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " "
                                              ]
                                            },
                                            {
                                              "r": "406",
                                              "s": [
                                                {
                                                  "value": [
                                                    "return "
                                                  ]
                                                },
                                                {
                                                  "r": "405",
                                                  "s": [
                                                    {
                                                      "r": "404",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Med"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "405",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "med"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ",\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "cmd",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "426",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Cumulative Duration\"",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "413",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "409",
                                                      "s": [
                                                        {
                                                          "r": "408",
                                                          "s": [
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Meds"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "Med"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " "
                                                  ]
                                                },
                                                {
                                                  "r": "412",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "return "
                                                      ]
                                                    },
                                                    {
                                                      "r": "411",
                                                      "s": [
                                                        {
                                                          "r": "410",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Med"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "411",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "periodInMP"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t}"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "429",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "392",
                      "alias": "Period",
                      "expression": {
                        "localId": "391",
                        "name": "Periods With Allowed Gaps",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "let": [
                    {
                      "localId": "400",
                      "identifier": "Meds",
                      "expression": {
                        "localId": "399",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "394",
                            "alias": "Opioid",
                            "expression": {
                              "localId": "393",
                              "name": "Opioid Med Periods In Measurement Period",
                              "type": "ExpressionRef"
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "where": {
                          "localId": "398",
                          "type": "IncludedIn",
                          "operand": [
                            {
                              "localId": "396",
                              "path": "periodInMP",
                              "scope": "Opioid",
                              "type": "Property"
                            },
                            {
                              "localId": "397",
                              "name": "Period",
                              "type": "AliasRef"
                            }
                          ]
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "428",
                    "expression": {
                      "localId": "427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "period",
                          "value": {
                            "localId": "401",
                            "name": "Period",
                            "type": "AliasRef"
                          }
                        },
                        {
                          "name": "meds",
                          "value": {
                            "localId": "407",
                            "type": "Query",
                            "source": [
                              {
                                "localId": "403",
                                "alias": "Med",
                                "expression": {
                                  "localId": "402",
                                  "name": "Meds",
                                  "type": "QueryLetRef"
                                }
                              }
                            ],
                            "relationship": [

                            ],
                            "return": {
                              "localId": "406",
                              "expression": {
                                "localId": "405",
                                "path": "med",
                                "scope": "Med",
                                "type": "Property"
                              }
                            }
                          }
                        },
                        {
                          "name": "cmd",
                          "value": {
                            "localId": "426",
                            "name": "Cumulative Duration",
                            "type": "FunctionRef",
                            "operand": [
                              {
                                "localId": "413",
                                "type": "Query",
                                "source": [
                                  {
                                    "localId": "409",
                                    "alias": "Med",
                                    "expression": {
                                      "localId": "408",
                                      "name": "Meds",
                                      "type": "QueryLetRef"
                                    }
                                  }
                                ],
                                "relationship": [

                                ],
                                "return": {
                                  "localId": "412",
                                  "expression": {
                                    "localId": "411",
                                    "path": "periodInMP",
                                    "scope": "Med",
                                    "type": "Property"
                                  }
                                }
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                }
              },
              {
                "localId": "438",
                "name": "Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "438",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\"",
                            ":\r\n\t/* The list of periods with Cumulative Medication Duration greater than or equal to 90 days. */\r\n\t"
                          ]
                        },
                        {
                          "r": "437",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "432",
                                  "s": [
                                    {
                                      "r": "431",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "\"Periods With Allowed Gaps With Meds and Durations\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "Period"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "436",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "436",
                                  "s": [
                                    {
                                      "r": "434",
                                      "s": [
                                        {
                                          "r": "433",
                                          "s": [
                                            {
                                              "value": [
                                                "Period"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "434",
                                          "s": [
                                            {
                                              "value": [
                                                "cmd"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        ">=",
                                        " ",
                                        "90"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "437",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "432",
                      "alias": "Period",
                      "expression": {
                        "localId": "431",
                        "name": "Periods With Allowed Gaps With Meds and Durations",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "436",
                    "type": "GreaterOrEqual",
                    "operand": [
                      {
                        "localId": "434",
                        "path": "cmd",
                        "scope": "Period",
                        "type": "Property"
                      },
                      {
                        "localId": "435",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "90",
                        "type": "Literal"
                      }
                    ]
                  }
                }
              },
              {
                "localId": "442",
                "name": "Initial Population",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "442",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Initial Population\"",
                            ":\n\t/*Patients 18 years of age and older prescribed a 90-day or greater supply with no more than a 7 day gap between prescription of opioids and who have a visit during the measurement period*/\r\n\t"
                          ]
                        },
                        {
                          "r": "441",
                          "s": [
                            {
                              "r": "275",
                              "s": [
                                {
                                  "r": "254",
                                  "s": [
                                    {
                                      "r": "252",
                                      "s": [
                                        {
                                          "r": "247",
                                          "s": [
                                            {
                                              "value": [
                                                "Global"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "252",
                                          "s": [
                                            {
                                              "value": [
                                                "CalendarAgeInYearsAt",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "249",
                                              "s": [
                                                {
                                                  "r": "248",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "Patient"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "249",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "birthDatetime"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", "
                                              ]
                                            },
                                            {
                                              "r": "251",
                                              "s": [
                                                {
                                                  "value": [
                                                    "start of "
                                                  ]
                                                },
                                                {
                                                  "r": "250",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Measurement Period\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ">=",
                                        " ",
                                        "18"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\tand "
                                  ]
                                },
                                {
                                  "r": "274",
                                  "s": [
                                    {
                                      "value": [
                                        "exists "
                                      ]
                                    },
                                    {
                                      "r": "273",
                                      "s": [
                                        {
                                          "value": [
                                            "( "
                                          ]
                                        },
                                        {
                                          "r": "273",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Encounters during Measurement Period\""
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " )"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\tand "
                              ]
                            },
                            {
                              "r": "440",
                              "s": [
                                {
                                  "value": [
                                    "exists "
                                  ]
                                },
                                {
                                  "r": "439",
                                  "s": [
                                    {
                                      "value": [
                                        "( "
                                      ]
                                    },
                                    {
                                      "r": "439",
                                      "s": [
                                        {
                                          "value": [
                                            "\"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\""
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " )"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "441",
                  "type": "And",
                  "operand": [
                    {
                      "localId": "275",
                      "type": "And",
                      "operand": [
                        {
                          "localId": "254",
                          "type": "GreaterOrEqual",
                          "operand": [
                            {
                              "localId": "252",
                              "name": "CalendarAgeInYearsAt",
                              "libraryName": "Global",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "249",
                                  "path": "birthDatetime",
                                  "type": "Property",
                                  "source": {
                                    "localId": "248",
                                    "name": "Patient",
                                    "type": "ExpressionRef"
                                  }
                                },
                                {
                                  "localId": "251",
                                  "type": "Start",
                                  "operand": {
                                    "localId": "250",
                                    "name": "Measurement Period",
                                    "type": "ParameterRef"
                                  }
                                }
                              ]
                            },
                            {
                              "localId": "253",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "18",
                              "type": "Literal"
                            }
                          ]
                        },
                        {
                          "localId": "274",
                          "type": "Exists",
                          "operand": {
                            "localId": "273",
                            "name": "Encounters during Measurement Period",
                            "type": "ExpressionRef"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "440",
                      "type": "Exists",
                      "operand": {
                        "localId": "439",
                        "name": "Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater",
                        "type": "ExpressionRef"
                      }
                    }
                  ]
                }
              },
              {
                "localId": "444",
                "name": "Denominator",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "444",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Denominator\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "443",
                          "s": [
                            {
                              "value": [
                                "\"Initial Population\""
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "443",
                  "name": "Initial Population",
                  "type": "ExpressionRef"
                }
              },
              {
                "localId": "529",
                "name": "Denominator Exclusion",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "529",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Denominator Exclusion\"",
                            ":\n\t/*Patients receiving palliative or hospice treatment, or patients with cancer, or patients with sickle cell disease during the measurement period are excluded.*/\r\n\t"
                          ]
                        },
                        {
                          "r": "528",
                          "s": [
                            {
                              "r": "510",
                              "s": [
                                {
                                  "r": "491",
                                  "s": [
                                    {
                                      "r": "475",
                                      "s": [
                                        {
                                          "r": "456",
                                          "s": [
                                            {
                                              "value": [
                                                "exists "
                                              ]
                                            },
                                            {
                                              "r": "455",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "455",
                                                  "s": [
                                                    {
                                                      "s": [
                                                        {
                                                          "r": "446",
                                                          "s": [
                                                            {
                                                              "r": "445",
                                                              "s": [
                                                                {
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "\"Encounters during Measurement Period\""
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "Encounter"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "r": "454",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "with "
                                                          ]
                                                        },
                                                        {
                                                          "r": "448",
                                                          "s": [
                                                            {
                                                              "r": "447",
                                                              "s": [
                                                                {
                                                                  "r": "447",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "[",
                                                                        "\"Intervention, Order\"",
                                                                        ": "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "\"Palliative Care\""
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "]"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "PalliativeCareOrder"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\tsuch that "
                                                          ]
                                                        },
                                                        {
                                                          "r": "453",
                                                          "s": [
                                                            {
                                                              "r": "450",
                                                              "s": [
                                                                {
                                                                  "r": "449",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "PalliativeCareOrder"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "450",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "authorDatetime"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "during",
                                                                " "
                                                              ]
                                                            },
                                                            {
                                                              "r": "452",
                                                              "s": [
                                                                {
                                                                  "r": "451",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "Encounter"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "452",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "relevantPeriod"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t)"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\tor "
                                          ]
                                        },
                                        {
                                          "r": "474",
                                          "s": [
                                            {
                                              "value": [
                                                "exists "
                                              ]
                                            },
                                            {
                                              "r": "473",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "473",
                                                  "s": [
                                                    {
                                                      "s": [
                                                        {
                                                          "r": "458",
                                                          "s": [
                                                            {
                                                              "r": "457",
                                                              "s": [
                                                                {
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "\"Encounters during Measurement Period\""
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "Encounter"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "r": "472",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "with "
                                                          ]
                                                        },
                                                        {
                                                          "r": "460",
                                                          "s": [
                                                            {
                                                              "r": "459",
                                                              "s": [
                                                                {
                                                                  "r": "459",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "[",
                                                                        "\"Intervention, Performed\"",
                                                                        ": "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "\"Palliative Care\""
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "]"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "PalliativeCareIntervention"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\t\tsuch that "
                                                          ]
                                                        },
                                                        {
                                                          "r": "471",
                                                          "s": [
                                                            {
                                                              "r": "465",
                                                              "s": [
                                                                {
                                                                  "r": "462",
                                                                  "s": [
                                                                    {
                                                                      "r": "461",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "PalliativeCareIntervention"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "462",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " ",
                                                                    "overlaps",
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "464",
                                                                  "s": [
                                                                    {
                                                                      "r": "463",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "Encounter"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "464",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "\r\n\t\t\t\t\t\tor "
                                                              ]
                                                            },
                                                            {
                                                              "r": "470",
                                                              "s": [
                                                                {
                                                                  "r": "467",
                                                                  "s": [
                                                                    {
                                                                      "r": "466",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "PalliativeCareIntervention"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "467",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " ",
                                                                    "starts during",
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "469",
                                                                  "s": [
                                                                    {
                                                                      "r": "468",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "Encounter"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "469",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t)"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\tor "
                                      ]
                                    },
                                    {
                                      "r": "490",
                                      "s": [
                                        {
                                          "value": [
                                            "exists "
                                          ]
                                        },
                                        {
                                          "r": "489",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "489",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "477",
                                                      "s": [
                                                        {
                                                          "r": "476",
                                                          "s": [
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"Encounters during Measurement Period\""
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "Encounter"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "488",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "with "
                                                      ]
                                                    },
                                                    {
                                                      "r": "483",
                                                      "s": [
                                                        {
                                                          "r": "482",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "( "
                                                              ]
                                                            },
                                                            {
                                                              "r": "482",
                                                              "s": [
                                                                {
                                                                  "r": "480",
                                                                  "s": [
                                                                    {
                                                                      "r": "478",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "[",
                                                                            "\"Intervention, Order\"",
                                                                            ": "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "\"Hospice Care SNO\""
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "]"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "\r\n\t\t\t\t\tunion "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "479",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "[",
                                                                            "\"Intervention, Performed\"",
                                                                            ": "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "\"Hospice Care SNO\""
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "]"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "\r\n\t\t\t\t\tunion "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "481",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "[",
                                                                        "\"Intervention, Recommended\"",
                                                                        ": "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "\"Hospice Care SNO\""
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "]"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " )"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "Hospice"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\t\tsuch that "
                                                      ]
                                                    },
                                                    {
                                                      "r": "487",
                                                      "s": [
                                                        {
                                                          "r": "485",
                                                          "s": [
                                                            {
                                                              "r": "484",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Hospice"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "485",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "authorDatetime"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "during",
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "486",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t)"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\tor "
                                  ]
                                },
                                {
                                  "r": "509",
                                  "s": [
                                    {
                                      "value": [
                                        "exists "
                                      ]
                                    },
                                    {
                                      "r": "508",
                                      "s": [
                                        {
                                          "value": [
                                            "( "
                                          ]
                                        },
                                        {
                                          "r": "508",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "493",
                                                  "s": [
                                                    {
                                                      "r": "492",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Encounters during Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "Encounter"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "507",
                                              "s": [
                                                {
                                                  "value": [
                                                    "with "
                                                  ]
                                                },
                                                {
                                                  "r": "495",
                                                  "s": [
                                                    {
                                                      "r": "494",
                                                      "s": [
                                                        {
                                                          "r": "494",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "[",
                                                                "\"Diagnosis\"",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"All Cancer\""
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "]"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "CancerDiagnosis"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t\tsuch that "
                                                  ]
                                                },
                                                {
                                                  "r": "506",
                                                  "s": [
                                                    {
                                                      "r": "501",
                                                      "s": [
                                                        {
                                                          "r": "497",
                                                          "s": [
                                                            {
                                                              "r": "496",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "CancerDiagnosis"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "497",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "prevalencePeriod"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "501",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "starts "
                                                              ]
                                                            },
                                                            {
                                                              "r": "500",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "1 ",
                                                                    "year"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " or less before"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "499",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "start of "
                                                              ]
                                                            },
                                                            {
                                                              "r": "498",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"Measurement Period\""
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\t\t\tor "
                                                      ]
                                                    },
                                                    {
                                                      "r": "505",
                                                      "s": [
                                                        {
                                                          "r": "503",
                                                          "s": [
                                                            {
                                                              "r": "502",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "CancerDiagnosis"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "503",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "prevalencePeriod"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "starts during",
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "504",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t)"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\tor "
                              ]
                            },
                            {
                              "r": "527",
                              "s": [
                                {
                                  "value": [
                                    "exists "
                                  ]
                                },
                                {
                                  "r": "526",
                                  "s": [
                                    {
                                      "value": [
                                        "( "
                                      ]
                                    },
                                    {
                                      "r": "526",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "r": "512",
                                              "s": [
                                                {
                                                  "r": "511",
                                                  "s": [
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Encounters during Measurement Period\""
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "Encounter"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\t\t"
                                          ]
                                        },
                                        {
                                          "r": "525",
                                          "s": [
                                            {
                                              "value": [
                                                "with "
                                              ]
                                            },
                                            {
                                              "r": "514",
                                              "s": [
                                                {
                                                  "r": "513",
                                                  "s": [
                                                    {
                                                      "r": "513",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "[",
                                                            "\"Diagnosis\"",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Sickle Cell Disease SNOMEDCT\""
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "]"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "DiagnosisSickle"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t\tsuch that "
                                              ]
                                            },
                                            {
                                              "r": "524",
                                              "s": [
                                                {
                                                  "r": "519",
                                                  "s": [
                                                    {
                                                      "r": "516",
                                                      "s": [
                                                        {
                                                          "r": "515",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "DiagnosisSickle"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "516",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "prevalencePeriod"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "starts before",
                                                        " "
                                                      ]
                                                    },
                                                    {
                                                      "r": "518",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "start of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "517",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Measurement Period\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t\t\tor "
                                                  ]
                                                },
                                                {
                                                  "r": "523",
                                                  "s": [
                                                    {
                                                      "r": "521",
                                                      "s": [
                                                        {
                                                          "r": "520",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "DiagnosisSickle"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "521",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "prevalencePeriod"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "starts during",
                                                        " "
                                                      ]
                                                    },
                                                    {
                                                      "r": "522",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Measurement Period\""
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t)"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "528",
                  "type": "Or",
                  "operand": [
                    {
                      "localId": "510",
                      "type": "Or",
                      "operand": [
                        {
                          "localId": "491",
                          "type": "Or",
                          "operand": [
                            {
                              "localId": "475",
                              "type": "Or",
                              "operand": [
                                {
                                  "localId": "456",
                                  "type": "Exists",
                                  "operand": {
                                    "localId": "455",
                                    "type": "Query",
                                    "source": [
                                      {
                                        "localId": "446",
                                        "alias": "Encounter",
                                        "expression": {
                                          "localId": "445",
                                          "name": "Encounters during Measurement Period",
                                          "type": "ExpressionRef"
                                        }
                                      }
                                    ],
                                    "relationship": [
                                      {
                                        "localId": "454",
                                        "alias": "PalliativeCareOrder",
                                        "type": "With",
                                        "expression": {
                                          "localId": "447",
                                          "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                          "templateId": "PositiveInterventionOrder",
                                          "codeProperty": "code",
                                          "type": "Retrieve",
                                          "codes": {
                                            "name": "Palliative Care",
                                            "type": "ValueSetRef"
                                          }
                                        },
                                        "suchThat": {
                                          "localId": "453",
                                          "type": "In",
                                          "operand": [
                                            {
                                              "localId": "450",
                                              "path": "authorDatetime",
                                              "scope": "PalliativeCareOrder",
                                              "type": "Property"
                                            },
                                            {
                                              "localId": "452",
                                              "path": "relevantPeriod",
                                              "scope": "Encounter",
                                              "type": "Property"
                                            }
                                          ]
                                        }
                                      }
                                    ]
                                  }
                                },
                                {
                                  "localId": "474",
                                  "type": "Exists",
                                  "operand": {
                                    "localId": "473",
                                    "type": "Query",
                                    "source": [
                                      {
                                        "localId": "458",
                                        "alias": "Encounter",
                                        "expression": {
                                          "localId": "457",
                                          "name": "Encounters during Measurement Period",
                                          "type": "ExpressionRef"
                                        }
                                      }
                                    ],
                                    "relationship": [
                                      {
                                        "localId": "472",
                                        "alias": "PalliativeCareIntervention",
                                        "type": "With",
                                        "expression": {
                                          "localId": "459",
                                          "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                          "templateId": "PositiveInterventionPerformed",
                                          "codeProperty": "code",
                                          "type": "Retrieve",
                                          "codes": {
                                            "name": "Palliative Care",
                                            "type": "ValueSetRef"
                                          }
                                        },
                                        "suchThat": {
                                          "localId": "471",
                                          "type": "Or",
                                          "operand": [
                                            {
                                              "localId": "465",
                                              "type": "Overlaps",
                                              "operand": [
                                                {
                                                  "localId": "462",
                                                  "path": "relevantPeriod",
                                                  "scope": "PalliativeCareIntervention",
                                                  "type": "Property"
                                                },
                                                {
                                                  "localId": "464",
                                                  "path": "relevantPeriod",
                                                  "scope": "Encounter",
                                                  "type": "Property"
                                                }
                                              ]
                                            },
                                            {
                                              "localId": "470",
                                              "type": "In",
                                              "operand": [
                                                {
                                                  "type": "Start",
                                                  "operand": {
                                                    "localId": "467",
                                                    "path": "relevantPeriod",
                                                    "scope": "PalliativeCareIntervention",
                                                    "type": "Property"
                                                  }
                                                },
                                                {
                                                  "localId": "469",
                                                  "path": "relevantPeriod",
                                                  "scope": "Encounter",
                                                  "type": "Property"
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      }
                                    ]
                                  }
                                }
                              ]
                            },
                            {
                              "localId": "490",
                              "type": "Exists",
                              "operand": {
                                "localId": "489",
                                "type": "Query",
                                "source": [
                                  {
                                    "localId": "477",
                                    "alias": "Encounter",
                                    "expression": {
                                      "localId": "476",
                                      "name": "Encounters during Measurement Period",
                                      "type": "ExpressionRef"
                                    }
                                  }
                                ],
                                "relationship": [
                                  {
                                    "localId": "488",
                                    "alias": "Hospice",
                                    "type": "With",
                                    "expression": {
                                      "localId": "482",
                                      "type": "Union",
                                      "operand": [
                                        {
                                          "type": "As",
                                          "operand": {
                                            "localId": "480",
                                            "type": "Union",
                                            "operand": [
                                              {
                                                "type": "As",
                                                "operand": {
                                                  "localId": "478",
                                                  "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                                  "templateId": "PositiveInterventionOrder",
                                                  "codeProperty": "code",
                                                  "type": "Retrieve",
                                                  "codes": {
                                                    "name": "Hospice Care SNO",
                                                    "type": "ValueSetRef"
                                                  }
                                                },
                                                "asTypeSpecifier": {
                                                  "type": "ListTypeSpecifier",
                                                  "elementType": {
                                                    "type": [
                                                      {
                                                        "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                                        "type": "NamedTypeSpecifier"
                                                      },
                                                      {
                                                        "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                                        "type": "NamedTypeSpecifier"
                                                      }
                                                    ]
                                                  }
                                                }
                                              },
                                              {
                                                "type": "As",
                                                "operand": {
                                                  "localId": "479",
                                                  "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                                  "templateId": "PositiveInterventionPerformed",
                                                  "codeProperty": "code",
                                                  "type": "Retrieve",
                                                  "codes": {
                                                    "name": "Hospice Care SNO",
                                                    "type": "ValueSetRef"
                                                  }
                                                },
                                                "asTypeSpecifier": {
                                                  "type": "ListTypeSpecifier",
                                                  "elementType": {
                                                    "type": [
                                                      {
                                                        "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                                        "type": "NamedTypeSpecifier"
                                                      },
                                                      {
                                                        "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                                        "type": "NamedTypeSpecifier"
                                                      }
                                                    ]
                                                  }
                                                }
                                              }
                                            ]
                                          },
                                          "asTypeSpecifier": {
                                            "type": "ListTypeSpecifier",
                                            "elementType": {
                                              "type": [
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                                  "type": "NamedTypeSpecifier"
                                                },
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                                  "type": "NamedTypeSpecifier"
                                                },
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionRecommended",
                                                  "type": "NamedTypeSpecifier"
                                                }
                                              ]
                                            }
                                          }
                                        },
                                        {
                                          "type": "As",
                                          "operand": {
                                            "localId": "481",
                                            "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionRecommended",
                                            "templateId": "PositiveInterventionRecommended",
                                            "codeProperty": "code",
                                            "type": "Retrieve",
                                            "codes": {
                                              "name": "Hospice Care SNO",
                                              "type": "ValueSetRef"
                                            }
                                          },
                                          "asTypeSpecifier": {
                                            "type": "ListTypeSpecifier",
                                            "elementType": {
                                              "type": [
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionPerformed",
                                                  "type": "NamedTypeSpecifier"
                                                },
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionOrder",
                                                  "type": "NamedTypeSpecifier"
                                                },
                                                {
                                                  "name": "{urn:healthit-gov:qdm:v5_3}PositiveInterventionRecommended",
                                                  "type": "NamedTypeSpecifier"
                                                }
                                              ]
                                            }
                                          }
                                        }
                                      ]
                                    },
                                    "suchThat": {
                                      "localId": "487",
                                      "type": "In",
                                      "operand": [
                                        {
                                          "localId": "485",
                                          "path": "authorDatetime",
                                          "scope": "Hospice",
                                          "type": "Property"
                                        },
                                        {
                                          "localId": "486",
                                          "name": "Measurement Period",
                                          "type": "ParameterRef"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            }
                          ]
                        },
                        {
                          "localId": "509",
                          "type": "Exists",
                          "operand": {
                            "localId": "508",
                            "type": "Query",
                            "source": [
                              {
                                "localId": "493",
                                "alias": "Encounter",
                                "expression": {
                                  "localId": "492",
                                  "name": "Encounters during Measurement Period",
                                  "type": "ExpressionRef"
                                }
                              }
                            ],
                            "relationship": [
                              {
                                "localId": "507",
                                "alias": "CancerDiagnosis",
                                "type": "With",
                                "expression": {
                                  "localId": "494",
                                  "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis",
                                  "codeProperty": "code",
                                  "type": "Retrieve",
                                  "codes": {
                                    "name": "All Cancer",
                                    "type": "ValueSetRef"
                                  }
                                },
                                "suchThat": {
                                  "localId": "506",
                                  "type": "Or",
                                  "operand": [
                                    {
                                      "localId": "501",
                                      "type": "In",
                                      "operand": [
                                        {
                                          "type": "Start",
                                          "operand": {
                                            "localId": "497",
                                            "path": "prevalencePeriod",
                                            "scope": "CancerDiagnosis",
                                            "type": "Property"
                                          }
                                        },
                                        {
                                          "lowClosed": true,
                                          "highClosed": false,
                                          "type": "Interval",
                                          "low": {
                                            "type": "Subtract",
                                            "operand": [
                                              {
                                                "localId": "499",
                                                "type": "Start",
                                                "operand": {
                                                  "localId": "498",
                                                  "name": "Measurement Period",
                                                  "type": "ParameterRef"
                                                }
                                              },
                                              {
                                                "localId": "500",
                                                "value": 1,
                                                "unit": "year",
                                                "type": "Quantity"
                                              }
                                            ]
                                          },
                                          "high": {
                                            "localId": "499",
                                            "type": "Start",
                                            "operand": {
                                              "localId": "498",
                                              "name": "Measurement Period",
                                              "type": "ParameterRef"
                                            }
                                          }
                                        }
                                      ]
                                    },
                                    {
                                      "localId": "505",
                                      "type": "In",
                                      "operand": [
                                        {
                                          "type": "Start",
                                          "operand": {
                                            "localId": "503",
                                            "path": "prevalencePeriod",
                                            "scope": "CancerDiagnosis",
                                            "type": "Property"
                                          }
                                        },
                                        {
                                          "localId": "504",
                                          "name": "Measurement Period",
                                          "type": "ParameterRef"
                                        }
                                      ]
                                    }
                                  ]
                                }
                              }
                            ]
                          }
                        }
                      ]
                    },
                    {
                      "localId": "527",
                      "type": "Exists",
                      "operand": {
                        "localId": "526",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "512",
                            "alias": "Encounter",
                            "expression": {
                              "localId": "511",
                              "name": "Encounters during Measurement Period",
                              "type": "ExpressionRef"
                            }
                          }
                        ],
                        "relationship": [
                          {
                            "localId": "525",
                            "alias": "DiagnosisSickle",
                            "type": "With",
                            "expression": {
                              "localId": "513",
                              "dataType": "{urn:healthit-gov:qdm:v5_3}Diagnosis",
                              "codeProperty": "code",
                              "type": "Retrieve",
                              "codes": {
                                "name": "Sickle Cell Disease SNOMEDCT",
                                "type": "ValueSetRef"
                              }
                            },
                            "suchThat": {
                              "localId": "524",
                              "type": "Or",
                              "operand": [
                                {
                                  "localId": "519",
                                  "type": "Before",
                                  "operand": [
                                    {
                                      "type": "Start",
                                      "operand": {
                                        "localId": "516",
                                        "path": "prevalencePeriod",
                                        "scope": "DiagnosisSickle",
                                        "type": "Property"
                                      }
                                    },
                                    {
                                      "localId": "518",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "517",
                                        "name": "Measurement Period",
                                        "type": "ParameterRef"
                                      }
                                    }
                                  ]
                                },
                                {
                                  "localId": "523",
                                  "type": "In",
                                  "operand": [
                                    {
                                      "type": "Start",
                                      "operand": {
                                        "localId": "521",
                                        "path": "prevalencePeriod",
                                        "scope": "DiagnosisSickle",
                                        "type": "Property"
                                      }
                                    },
                                    {
                                      "localId": "522",
                                      "name": "Measurement Period",
                                      "type": "ParameterRef"
                                    }
                                  ]
                                }
                              ]
                            }
                          }
                        ]
                      }
                    }
                  ]
                }
              },
              {
                "localId": "545",
                "name": "Cumulative Medication Duration",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "545",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Cumulative Medication Duration\"",
                            "(",
                            "Medication",
                            " "
                          ]
                        },
                        {
                          "r": "535",
                          "s": [
                            {
                              "value": [
                                "List<"
                              ]
                            },
                            {
                              "r": "534",
                              "s": [
                                {
                                  "value": [
                                    "\"Medication, Order\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "544",
                          "s": [
                            {
                              "r": "544",
                              "s": [
                                {
                                  "value": [
                                    "Sum",
                                    "("
                                  ]
                                },
                                {
                                  "r": "543",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "539",
                                          "s": [
                                            {
                                              "r": "538",
                                              "s": [
                                                {
                                                  "value": [
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "538",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "collapse"
                                                      ]
                                                    },
                                                    {
                                                      "r": "537",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "537",
                                                          "s": [
                                                            {
                                                              "r": "536",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Medication"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "537",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "relevantPeriod"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "CumulativeDosages"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "542",
                                      "s": [
                                        {
                                          "value": [
                                            "return all "
                                          ]
                                        },
                                        {
                                          "r": "541",
                                          "s": [
                                            {
                                              "value": [
                                                "duration in days of "
                                              ]
                                            },
                                            {
                                              "r": "540",
                                              "s": [
                                                {
                                                  "value": [
                                                    "CumulativeDosages"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "544",
                  "type": "Sum",
                  "source": {
                    "localId": "543",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "539",
                        "alias": "CumulativeDosages",
                        "expression": {
                          "localId": "538",
                          "type": "Collapse",
                          "operand": [
                            {
                              "localId": "537",
                              "type": "Query",
                              "source": [
                                {
                                  "alias": "$this",
                                  "expression": {
                                    "localId": "536",
                                    "name": "Medication",
                                    "type": "OperandRef"
                                  }
                                }
                              ],
                              "where": {
                                "type": "Not",
                                "operand": {
                                  "type": "IsNull",
                                  "operand": {
                                    "path": "relevantPeriod",
                                    "type": "Property",
                                    "source": {
                                      "name": "$this",
                                      "type": "AliasRef"
                                    }
                                  }
                                }
                              },
                              "return": {
                                "expression": {
                                  "path": "relevantPeriod",
                                  "type": "Property",
                                  "source": {
                                    "name": "$this",
                                    "type": "AliasRef"
                                  }
                                }
                              }
                            },
                            {
                              "resultTypeName": "{urn:hl7-org:elm-types:r1}Quantity",
                              "type": "Null"
                            }
                          ]
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "542",
                      "distinct": false,
                      "expression": {
                        "localId": "541",
                        "precision": "Day",
                        "type": "DurationBetween",
                        "operand": [
                          {
                            "type": "Start",
                            "operand": {
                              "localId": "540",
                              "name": "CumulativeDosages",
                              "type": "AliasRef"
                            }
                          },
                          {
                            "type": "End",
                            "operand": {
                              "localId": "540",
                              "name": "CumulativeDosages",
                              "type": "AliasRef"
                            }
                          }
                        ]
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Medication",
                    "operandTypeSpecifier": {
                      "localId": "535",
                      "type": "ListTypeSpecifier",
                      "elementType": {
                        "localId": "534",
                        "name": "{urn:healthit-gov:qdm:v5_3}PositiveMedicationOrder",
                        "type": "NamedTypeSpecifier"
                      }
                    }
                  }
                ]
              }
            ]
          }
        }
      },
      "elm_annotations": {
        "statements": [
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"SDE Ethnicity\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "[\"Patient Characteristic Ethnicity\": "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"Ethnicity\""
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Retrieve",
                    "ref_id": "50"
                  }
                ],
                "ref_id": "51"
              }
            ],
            "define_name": "SDE Ethnicity"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"SDE Payer\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "[\"Patient Characteristic Payer\": "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"Payer\""
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Retrieve",
                    "ref_id": "52"
                  }
                ],
                "ref_id": "53"
              }
            ],
            "define_name": "SDE Payer"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"SDE Race\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "[\"Patient Characteristic Race\": "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"Race\""
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Retrieve",
                    "ref_id": "54"
                  }
                ],
                "ref_id": "55"
              }
            ],
            "define_name": "SDE Race"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"SDE Sex\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "[\"Patient Characteristic Sex\": "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"ONC Administrative Sex\""
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Retrieve",
                    "ref_id": "56"
                  }
                ],
                "ref_id": "57"
              }
            ],
            "define_name": "SDE Sex"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"OpioidMedications\":\n  /*An opioid medication order during or overlapping the start of the measurement period*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "[\"Medication, Order\": "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Opioid Medications\""
                                              }
                                            ]
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "]"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Retrieve",
                                    "ref_id": "58"
                                  }
                                ],
                                "node_type": "Retrieve",
                                "ref_id": "58"
                              },
                              {
                                "children": [
                                  {
                                    "text": " OpioidMedicationOrder"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "59"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "OpioidMedicationOrder"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "60"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "relevantPeriod"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "61"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "61"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " starts during "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Measurement Period\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ParameterRef",
                                    "ref_id": "62"
                                  }
                                ],
                                "node_type": "In",
                                "ref_id": "63"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      or "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "OpioidMedicationOrder"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "64"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "relevantPeriod"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "65"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "65"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " overlaps "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Measurement Period\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ParameterRef",
                                    "ref_id": "66"
                                  }
                                ],
                                "node_type": "Overlaps",
                                "ref_id": "67"
                              }
                            ],
                            "ref_id": "68"
                          }
                        ],
                        "ref_id": "68"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "69"
                  }
                ],
                "ref_id": "70"
              }
            ],
            "define_name": "OpioidMedications"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"DosesPerDay\"(frequency "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "75"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "76"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Once daily (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "77"
                                  }
                                ],
                                "ref_id": "78"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 1.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "80"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "81"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Twice a day (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "82"
                                  }
                                ],
                                "ref_id": "83"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 2.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "85"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "86"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Three times daily (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "87"
                                  }
                                ],
                                "ref_id": "88"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 3.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "90"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "91"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Four times daily (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "92"
                                  }
                                ],
                                "ref_id": "93"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 4.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "95"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "96"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every four hours as required (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "97"
                                  }
                                ],
                                "ref_id": "98"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 6.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "100"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "101"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every two to four hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "102"
                                  }
                                ],
                                "ref_id": "103"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 12.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "105"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "106"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every twenty four hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "107"
                                  }
                                ],
                                "ref_id": "108"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 1.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "110"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "111"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every twelve hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "112"
                                  }
                                ],
                                "ref_id": "113"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 2.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "115"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "116"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every thirty six hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "117"
                                  }
                                ],
                                "ref_id": "118"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 0.67"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "120"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "121"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every eight hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "122"
                                  }
                                ],
                                "ref_id": "123"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 3.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "125"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "126"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every six hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "127"
                                  }
                                ],
                                "ref_id": "128"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 4.0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "130"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "131"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every seventy two hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "132"
                                  }
                                ],
                                "ref_id": "133"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 0.34"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "135"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "136"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ~ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Every forty eight hours (qualifier value)\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "CodeRef",
                                    "ref_id": "137"
                                  }
                                ],
                                "ref_id": "138"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then 0.5"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "140"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n    else null &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "142"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "142"
                  }
                ],
                "ref_id": "143"
              }
            ],
            "define_name": "DosesPerDay"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Prescriptions with MME\":\n  /*Using the MME calculated from the Opioid Medication Library and return the opioid code, opioid author datetime, opioid effective period, and the Conversion Factor*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"OpioidMedications\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "71"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Opioid"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "72"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "let "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "dosesPerDay: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"DosesPerDay\"("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Opioid"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "73"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "74"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "74"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "FunctionRef",
                                "ref_id": "144"
                              }
                            ],
                            "ref_id": "145"
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "MME: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "singleton from "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "OpioidLogicLibrary"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "146"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"CalculateMorphineMilligramEquivalents\"("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "{ "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "{&#13;\n          "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "rxNormCode: "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "Opioid"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "147"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "code"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "148"
                                                              }
                                                            ],
                                                            "ref_id": "148"
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ",&#13;\n          "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseQuantity: "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "Opioid"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "149"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "dosage"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "150"
                                                              }
                                                            ],
                                                            "ref_id": "150"
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ",&#13;\n          "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "dosesPerDay: "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "dosesPerDay"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "151"
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "&#13;\n        }"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "152"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " }"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "List",
                                                "ref_id": "153"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n      )"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "FunctionRef",
                                            "ref_id": "154"
                                          }
                                        ],
                                        "node_type": "FunctionRef",
                                        "ref_id": "154"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n    )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "FunctionRef",
                                    "ref_id": "154"
                                  }
                                ],
                                "node_type": "SingletonFrom",
                                "ref_id": "155"
                              }
                            ],
                            "ref_id": "156"
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "medPeriod: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Opioid"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "157"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "relevantPeriod"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "158"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "158"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      intersect "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Measurement Period\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ParameterRef",
                                    "ref_id": "159"
                                  }
                                ],
                                "node_type": "Intersect",
                                "ref_id": "160"
                              }
                            ],
                            "ref_id": "161"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "return "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "{&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "rxNormCode: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Opioid"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "162"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "code"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "163"
                                      }
                                    ],
                                    "ref_id": "163"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "authortime: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Opioid"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "164"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "authorDatetime"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "165"
                                      }
                                    ],
                                    "ref_id": "165"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "effectivePeriod: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "medPeriod"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "166"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "conversionFactor: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "MME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "167"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "conversionFactor"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "168"
                                      }
                                    ],
                                    "ref_id": "168"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "MME: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "MME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "169"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "MME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "170"
                                      }
                                    ],
                                    "ref_id": "170"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    }"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Tuple",
                            "ref_id": "171"
                          }
                        ],
                        "ref_id": "172"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "173"
                  }
                ],
                "ref_id": "174"
              }
            ],
            "define_name": "Prescriptions with MME"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Prescription Days\":\n  /*Using the values passed from the Prescription with MMEs definition, this definition creates a single list containing the days within the period*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Prescriptions with MME\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "175"
                              },
                              {
                                "children": [
                                  {
                                    "text": " ScriptMME"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "176"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "let "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "period: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Timing"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "177"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"DaysInPeriod\"("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "ScriptMME"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "178"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "effectivePeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "179"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "179"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "FunctionRef",
                                    "ref_id": "180"
                                  }
                                ],
                                "node_type": "FunctionRef",
                                "ref_id": "180"
                              }
                            ],
                            "ref_id": "181"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "return "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "{&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "rxNormCode: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ScriptMME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "182"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "rxNormCode"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "183"
                                      }
                                    ],
                                    "ref_id": "183"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "days_period: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "period"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "184"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ", /* DaysInPeriod returns a list of Dates in the interval*/&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "MME: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ScriptMME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "185"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "MME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "186"
                                      }
                                    ],
                                    "ref_id": "186"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    }"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Tuple",
                            "ref_id": "187"
                          }
                        ],
                        "ref_id": "188"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "189"
                  }
                ],
                "ref_id": "190"
              }
            ],
            "define_name": "Prescription Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"MME Days\":\n  /*Using the rxNorm Code passed from the PrescriptionDays definition, and retun the number of days a medication was ordered*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "flatten "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "( "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Prescription Days\""
                                                  }
                                                ]
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "191"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " PrescriptionDays"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "192"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return all "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "PrescriptionDays.days_period"
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "193"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " Days"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "194"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n          "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "return "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "{&#13;\n            "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "rxNormCode: "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "PrescriptionDays"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "195"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "rxNormCode"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "196"
                                                          }
                                                        ],
                                                        "ref_id": "196"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ",&#13;\n            "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Day: "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Days"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "197"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ",&#13;\n            "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "MME: "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "PrescriptionDays"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "198"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "MME"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "199"
                                                          }
                                                        ],
                                                        "ref_id": "199"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n          }"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Tuple",
                                                "ref_id": "200"
                                              }
                                            ],
                                            "ref_id": "201"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "202"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n      )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "202"
                                  }
                                ],
                                "ref_id": "203"
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "204"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "204"
                      }
                    ],
                    "node_type": "Flatten",
                    "ref_id": "205"
                  }
                ],
                "ref_id": "206"
              }
            ],
            "define_name": "MME Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"MME Sum Days\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "distinct "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"MME Days\""
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ExpressionRef",
                                                    "ref_id": "207"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " MMEDays"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "208"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n    "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "return "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "MMEDays"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "209"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Day"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "210"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "210"
                                              }
                                            ],
                                            "ref_id": "211"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "212"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "212"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " Days"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "let "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "totalMME: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Sum("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"MME Days\""
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ExpressionRef",
                                                    "ref_id": "214"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " Total"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "215"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "where "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Total"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "216"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Day"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "217"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "217"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " same day as "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Days"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "AliasRef",
                                                    "ref_id": "218"
                                                  }
                                                ],
                                                "ref_id": "219"
                                              }
                                            ],
                                            "ref_id": "219"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "return all "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Total"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "220"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "MME"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "221"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "221"
                                              }
                                            ],
                                            "ref_id": "222"
                                          }
                                        ],
                                        "ref_id": "223"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n    )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Sum",
                                    "ref_id": "224"
                                  }
                                ],
                                "ref_id": "225"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "return "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "{&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Day: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Days"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "226"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "totalMME: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "totalMME"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "227"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    }"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Tuple",
                                "ref_id": "228"
                              }
                            ],
                            "ref_id": "229"
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "230"
                      }
                    ],
                    "node_type": "Distinct",
                    "ref_id": "231"
                  }
                ],
                "ref_id": "232"
              }
            ],
            "define_name": "MME Sum Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"MME Greater Than 90\":\n  /*Using the MME interval passed from the \"MMEIntervals\" definition, count the number of instances where the MME interval is greater than 90 days*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Count("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"MME Sum Days\""
                                                  }
                                                ]
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "233"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " MMESum"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "234"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "where "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "MMESum"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "235"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "totalMME"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "236"
                                              }
                                            ],
                                            "ref_id": "236"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "value"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "237"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "237"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " >= 90"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "239"
                                  }
                                ],
                                "ref_id": "239"
                              }
                            ],
                            "ref_id": "240"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "Count",
                        "ref_id": "241"
                      },
                      {
                        "children": [
                          {
                            "text": ">= 90"
                          }
                        ]
                      }
                    ],
                    "node_type": "GreaterOrEqual",
                    "ref_id": "243"
                  }
                ],
                "ref_id": "244"
              }
            ],
            "define_name": "MME Greater Than 90"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Numerator\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"MME Greater Than 90\""
                          }
                        ]
                      }
                    ],
                    "node_type": "ExpressionRef",
                    "ref_id": "245"
                  }
                ],
                "ref_id": "246"
              }
            ],
            "define_name": "Numerator"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Encounters during Measurement Period\":\n  /*A Face to Face Interaction, Office Visit, Preventative Care Services  Established Office Visit for 18 years and over, Preventative Care Services - Initial Office Visit for 18 years and over, Outpatient Consultation or Preventative Care Services - Other encounter performed during the Measurement Period*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "[\"Encounter, Performed\": "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "\"Face to Face Interaction - No ED\""
                                                                  }
                                                                ]
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "]"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Retrieve",
                                                        "ref_id": "255"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "&#13;\n    union "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "[\"Encounter, Performed\": "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "\"Office Visit\""
                                                                  }
                                                                ]
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "]"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Retrieve",
                                                        "ref_id": "256"
                                                      }
                                                    ],
                                                    "node_type": "Union",
                                                    "ref_id": "257"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n    union "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "[\"Encounter, Performed\": "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"Preventive Care Services - Established Office Visit, 18 and Up\""
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "]"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Retrieve",
                                                    "ref_id": "258"
                                                  }
                                                ],
                                                "ref_id": "259"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n    union "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "[\"Encounter, Performed\": "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Preventive Care Services-Initial Office Visit, 18 and Up\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "]"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Retrieve",
                                                "ref_id": "260"
                                              }
                                            ],
                                            "node_type": "Union",
                                            "ref_id": "261"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n    union "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "[\"Encounter, Performed\": "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Outpatient Consultation\""
                                                      }
                                                    ]
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "]"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Retrieve",
                                            "ref_id": "262"
                                          }
                                        ],
                                        "ref_id": "263"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n    union "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "[\"Encounter, Performed\": "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Preventive Care Services - Other\""
                                                  }
                                                ]
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "]"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Retrieve",
                                        "ref_id": "264"
                                      }
                                    ],
                                    "node_type": "Union",
                                    "ref_id": "265"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " )"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Union",
                                "ref_id": "265"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Encounter"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "266"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Encounter"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "267"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "relevantPeriod"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "268"
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "268"
                              },
                              {
                                "children": [
                                  {
                                    "text": " during "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"Measurement Period\""
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ParameterRef",
                                "ref_id": "269"
                              }
                            ],
                            "ref_id": "270"
                          }
                        ],
                        "ref_id": "270"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "271"
                  }
                ],
                "ref_id": "272"
              }
            ],
            "define_name": "Encounters during Measurement Period"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Opioid Med Periods In Measurement Period\":&#13;\n  /* Creates a list of tuples that have the medication and the period of the medication in the measurement period. */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"OpioidMedications\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "276"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Opioid"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "277"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "return "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "{&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "periodInMP: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "Opioid"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "278"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "relevantPeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "279"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "279"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " intersect "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Measurement Period\""
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ParameterRef",
                                        "ref_id": "280"
                                      }
                                    ],
                                    "ref_id": "281"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "med: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Opioid"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "282"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    }"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Tuple",
                            "ref_id": "283"
                          }
                        ],
                        "ref_id": "284"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "285"
                  }
                ],
                "ref_id": "286"
              }
            ],
            "define_name": "Opioid Med Periods In Measurement Period"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Opioid Periods\":&#13;\n  /* All intervals of opioid medications, clamped to the measurement period, collapsed */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "collapse"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Opioid Med Periods In Measurement Period\""
                                                  }
                                                ]
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "287"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " Opioid"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "288"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": " "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Opioid"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "289"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "periodInMP"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "290"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "290"
                                  }
                                ],
                                "ref_id": "291"
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "292"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "292"
                      }
                    ],
                    "node_type": "Collapse",
                    "ref_id": "293"
                  }
                ],
                "ref_id": "294"
              }
            ],
            "define_name": "Opioid Periods"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Gaps In Active Opioid Period\":&#13;\n  /* The list of all gaps in the overall opioid period. */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Opioid Periods\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "295"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Period"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "296"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "let "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "NextIndex: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "IndexOf("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Opioid Periods\""
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "297"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Period"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "298"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "IndexOf",
                                    "ref_id": "299"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " + 1"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Add",
                                "ref_id": "301"
                              }
                            ],
                            "ref_id": "302"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "NextIndex"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "QueryLetRef",
                                "ref_id": "303"
                              },
                              {
                                "children": [
                                  {
                                    "text": " < "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Length("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Opioid Periods\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ExpressionRef",
                                    "ref_id": "304"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Length",
                                "ref_id": "305"
                              }
                            ],
                            "ref_id": "306"
                          }
                        ],
                        "ref_id": "306"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "return "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Interval["
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "end of "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Period"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "AliasRef",
                                    "ref_id": "307"
                                  }
                                ],
                                "ref_id": "308"
                              },
                              {
                                "children": [
                                  {
                                    "text": ", "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "start of "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Opioid Periods\""
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "309"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "["
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "NextIndex"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "QueryLetRef",
                                        "ref_id": "310"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "]"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Indexer",
                                    "ref_id": "311"
                                  }
                                ],
                                "ref_id": "312"
                              },
                              {
                                "children": [
                                  {
                                    "text": "]"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Interval",
                            "ref_id": "313"
                          }
                        ],
                        "ref_id": "314"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "315"
                  }
                ],
                "ref_id": "316"
              }
            ],
            "define_name": "Gaps In Active Opioid Period"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Gaps Greater Than 7 Days\":&#13;\n  /* The list of gaps in the overall period that are greater than 7 days */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Gaps In Active Opioid Period\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "317"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Gap"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "318"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "duration in days of "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Gap"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "AliasRef",
                                    "ref_id": "319"
                                  }
                                ],
                                "node_type": "DurationBetween",
                                "ref_id": "320"
                              },
                              {
                                "children": [
                                  {
                                    "text": " > 7"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "322"
                          }
                        ],
                        "ref_id": "322"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "323"
                  }
                ],
                "ref_id": "324"
              }
            ],
            "define_name": "Gaps Greater Than 7 Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Overall Active Opioid Period\":&#13;\n  /* The overall period of opioid medications. start of first to end of last */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Interval[&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "start of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "First("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Opioid Med Periods In Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "329"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " OpioidPeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "330"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "sort by "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "start of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "periodInMP"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "IdentifierRef",
                                                    "ref_id": "331"
                                                  }
                                                ],
                                                "node_type": "Start",
                                                "ref_id": "332"
                                              }
                                            ],
                                            "ref_id": "333"
                                          }
                                        ],
                                        "ref_id": "334"
                                      }
                                    ],
                                    "ref_id": "335"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "336"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "periodInMP"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "337"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "337"
                          }
                        ],
                        "ref_id": "338"
                      },
                      {
                        "children": [
                          {
                            "text": ",&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "end of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Last("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Opioid Med Periods In Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "339"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " OpioidPeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "340"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "sort by "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "end of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "periodInMP"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "IdentifierRef",
                                                    "ref_id": "341"
                                                  }
                                                ],
                                                "node_type": "End",
                                                "ref_id": "342"
                                              }
                                            ],
                                            "ref_id": "343"
                                          }
                                        ],
                                        "ref_id": "344"
                                      }
                                    ],
                                    "ref_id": "345"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "346"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "periodInMP"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "347"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "347"
                          }
                        ],
                        "ref_id": "348"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    ]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Interval",
                    "ref_id": "349"
                  }
                ],
                "ref_id": "350"
              }
            ],
            "define_name": "Overall Active Opioid Period"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Periods With Allowed Gaps\":&#13;\n  /* The lists of periods with allowed gaps. This uses \"Gaps Greater Than 7 Days\" to construct the periods. */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "if "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Length("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"Gaps Greater Than 7 Days\""
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "325"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Length",
                            "ref_id": "326"
                          },
                          {
                            "children": [
                              {
                                "text": " < 1"
                              }
                            ]
                          }
                        ],
                        "node_type": "Less",
                        "ref_id": "328"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    /* If there are no gaps, use the overall period */&#13;\n    then "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{ "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"Overall Active Opioid Period\""
                                  }
                                ]
                              }
                            ],
                            "ref_id": "351"
                          },
                          {
                            "children": [
                              {
                                "text": " }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "352"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    else &#13;\n      /* First interval from start of overall period to first gap */&#13;\n      "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "{ "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Interval["
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "start of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Overall Active Opioid Period\""
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "353"
                                      }
                                    ],
                                    "ref_id": "354"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ", "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "start of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Gaps Greater Than 7 Days\""
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "ExpressionRef",
                                            "ref_id": "355"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "[0]"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Indexer",
                                        "ref_id": "357"
                                      }
                                    ],
                                    "ref_id": "358"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "]"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "359"
                              },
                              {
                                "children": [
                                  {
                                    "text": " }"
                                  }
                                ]
                              }
                            ],
                            "node_type": "List",
                            "ref_id": "360"
                          },
                          {
                            "children": [
                              {
                                "text": " union &#13;\n      /* Rest of intervals. Foreach: start at end of current gap, end at end of next gap or end of overall period */&#13;\n      "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Gaps Greater Than 7 Days\""
                                                  }
                                                ]
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ExpressionRef",
                                        "ref_id": "361"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " Gap"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "362"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n        "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "let "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "NextGapIndex: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "IndexOf("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Gaps Greater Than 7 Days\""
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "363"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ", "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Gap"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "364"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "IndexOf",
                                            "ref_id": "365"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " + 1"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Add",
                                        "ref_id": "367"
                                      }
                                    ],
                                    "ref_id": "368"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n        "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "if "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "NextGapIndex"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "QueryLetRef",
                                            "ref_id": "369"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " < "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "Length("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Gaps Greater Than 7 Days\""
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "370"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Length",
                                            "ref_id": "371"
                                          }
                                        ],
                                        "node_type": "Less",
                                        "ref_id": "372"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n          then "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Interval["
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "end of "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Gap"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "AliasRef",
                                                "ref_id": "373"
                                              }
                                            ],
                                            "ref_id": "374"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "start of "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Gaps Greater Than 7 Days\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ExpressionRef",
                                                    "ref_id": "375"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "["
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "NextGapIndex"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "376"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "]"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Indexer",
                                                "ref_id": "377"
                                              }
                                            ],
                                            "ref_id": "378"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "]"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "379"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n          else "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Interval["
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "end of "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Gap"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "AliasRef",
                                                "ref_id": "380"
                                              }
                                            ],
                                            "ref_id": "381"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "end of "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Overall Active Opioid Period\""
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "382"
                                              }
                                            ],
                                            "ref_id": "383"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "]"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "384"
                                      }
                                    ],
                                    "node_type": "If",
                                    "ref_id": "385"
                                  }
                                ],
                                "ref_id": "386"
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "387"
                          }
                        ],
                        "ref_id": "388"
                      }
                    ],
                    "node_type": "If",
                    "ref_id": "389"
                  }
                ],
                "ref_id": "390"
              }
            ],
            "define_name": "Periods With Allowed Gaps"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Cumulative Duration\"(Periods "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "List<"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Interval<"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "DateTime"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "414"
                          },
                          {
                            "children": [
                              {
                                "text": ">"
                              }
                            ]
                          }
                        ],
                        "ref_id": "415"
                      },
                      {
                        "children": [
                          {
                            "text": ">"
                          }
                        ]
                      }
                    ],
                    "ref_id": "416"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Sum("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "collapse"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Periods"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "417"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "OperandRef",
                                                "ref_id": "417"
                                              }
                                            ],
                                            "node_type": "Collapse",
                                            "ref_id": "418"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Collapse",
                                        "ref_id": "418"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " Period"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "419"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return all "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "duration in days of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Period"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "AliasRef",
                                        "ref_id": "420"
                                      }
                                    ],
                                    "node_type": "DurationBetween",
                                    "ref_id": "421"
                                  }
                                ],
                                "ref_id": "422"
                              }
                            ],
                            "ref_id": "423"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "Sum",
                        "ref_id": "424"
                      }
                    ],
                    "node_type": "Sum",
                    "ref_id": "424"
                  }
                ],
                "ref_id": "425"
              }
            ],
            "define_name": "Cumulative Duration"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Periods With Allowed Gaps With Meds and Durations\":&#13;\n  /* List of each period with allowed gaps with the list of medications and the Cumulative Medication Duration for the&#13;\n    medications in period */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Periods With Allowed Gaps\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "391"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Period"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "392"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "let "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Meds: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Opioid Med Periods In Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "393"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " Opioid"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "394"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "where "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Opioid"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "395"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "periodInMP"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "396"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "396"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " during "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Period"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "AliasRef",
                                                "ref_id": "397"
                                              }
                                            ],
                                            "ref_id": "398"
                                          }
                                        ],
                                        "ref_id": "398"
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "399"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Query",
                                "ref_id": "399"
                              }
                            ],
                            "ref_id": "400"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "return "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "{&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "period: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Period"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "401"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "meds: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Meds"
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "QueryLetRef",
                                                "ref_id": "402"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " Med"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "403"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "return "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Med"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "404"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "med"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "405"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "405"
                                          }
                                        ],
                                        "ref_id": "406"
                                      }
                                    ],
                                    "ref_id": "407"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ",&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "cmd: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Cumulative Duration\"("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Meds"
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "408"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " Med"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "409"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "return "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Med"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "410"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "periodInMP"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "411"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "411"
                                              }
                                            ],
                                            "ref_id": "412"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "413"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "426"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    }"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Tuple",
                            "ref_id": "427"
                          }
                        ],
                        "ref_id": "428"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "429"
                  }
                ],
                "ref_id": "430"
              }
            ],
            "define_name": "Periods With Allowed Gaps With Meds and Durations"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\":&#13;\n  /* The list of periods with Cumulative Medication Duration greater than or equal to 90 days. */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Periods With Allowed Gaps With Meds and Durations\""
                                          }
                                        ]
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "431"
                              },
                              {
                                "children": [
                                  {
                                    "text": " Period"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "432"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Period"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "433"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "cmd"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "434"
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "434"
                              },
                              {
                                "children": [
                                  {
                                    "text": " >= 90"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "436"
                          }
                        ],
                        "ref_id": "436"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "437"
                  }
                ],
                "ref_id": "438"
              }
            ],
            "define_name": "Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Initial Population\":\n  /*Patients 18 years of age and older prescribed a 90-day or greater supply with no more than a 7 day gap between prescription of opioids and who have a visit during the measurement period*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Global"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "247"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "CalendarAgeInYearsAt("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "Patient"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "248"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "birthDatetime"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "249"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "249"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "start of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Measurement Period\""
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "ParameterRef",
                                            "ref_id": "250"
                                          }
                                        ],
                                        "node_type": "Start",
                                        "ref_id": "251"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "FunctionRef",
                                    "ref_id": "252"
                                  }
                                ],
                                "node_type": "FunctionRef",
                                "ref_id": "252"
                              },
                              {
                                "children": [
                                  {
                                    "text": ">= 18"
                                  }
                                ]
                              }
                            ],
                            "node_type": "GreaterOrEqual",
                            "ref_id": "254"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    and "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "exists "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Encounters during Measurement Period\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ExpressionRef",
                                    "ref_id": "273"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " )"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "273"
                              }
                            ],
                            "node_type": "Exists",
                            "ref_id": "274"
                          }
                        ],
                        "node_type": "And",
                        "ref_id": "275"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    and "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "exists "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "( "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\""
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ExpressionRef",
                                "ref_id": "439"
                              },
                              {
                                "children": [
                                  {
                                    "text": " )"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ExpressionRef",
                            "ref_id": "439"
                          }
                        ],
                        "node_type": "Exists",
                        "ref_id": "440"
                      }
                    ],
                    "node_type": "And",
                    "ref_id": "441"
                  }
                ],
                "ref_id": "442"
              }
            ],
            "define_name": "Initial Population"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Denominator\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Initial Population\""
                          }
                        ]
                      }
                    ],
                    "node_type": "ExpressionRef",
                    "ref_id": "443"
                  }
                ],
                "ref_id": "444"
              }
            ],
            "define_name": "Denominator"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Denominator Exclusion\":\n  /*Patients receiving palliative or hospice treatment, or patients with cancer, or patients with sickle cell disease during the measurement period are excluded.*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "exists "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "\"Encounters during Measurement Period\""
                                                                  }
                                                                ]
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "ExpressionRef",
                                                        "ref_id": "445"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " Encounter"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "446"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n      "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "with "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "[\"Intervention, Order\": "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "\"Palliative Care\""
                                                                      }
                                                                    ]
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "]"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Retrieve",
                                                            "ref_id": "447"
                                                          }
                                                        ],
                                                        "node_type": "Retrieve",
                                                        "ref_id": "447"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " PalliativeCareOrder"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "448"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n        such that "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "PalliativeCareOrder"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "449"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "authorDatetime"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "450"
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "450"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " during "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "Encounter"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "451"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "relevantPeriod"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "452"
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "452"
                                                      }
                                                    ],
                                                    "node_type": "In",
                                                    "ref_id": "453"
                                                  }
                                                ],
                                                "ref_id": "454"
                                              }
                                            ],
                                            "node_type": "Query",
                                            "ref_id": "455"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n  )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "455"
                                      }
                                    ],
                                    "node_type": "Exists",
                                    "ref_id": "456"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    or "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "exists "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "\"Encounters during Measurement Period\""
                                                                  }
                                                                ]
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "ExpressionRef",
                                                        "ref_id": "457"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " Encounter"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "458"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n        "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "with "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "[\"Intervention, Performed\": "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "\"Palliative Care\""
                                                                      }
                                                                    ]
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "]"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Retrieve",
                                                            "ref_id": "459"
                                                          }
                                                        ],
                                                        "node_type": "Retrieve",
                                                        "ref_id": "459"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " PalliativeCareIntervention"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "460"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n          such that "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "PalliativeCareIntervention"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "461"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "462"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "462"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " overlaps "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "Encounter"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "463"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "464"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "464"
                                                          }
                                                        ],
                                                        "node_type": "Overlaps",
                                                        "ref_id": "465"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "&#13;\n            or "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "PalliativeCareIntervention"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "466"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "467"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "467"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " starts during "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "Encounter"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "468"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "469"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "469"
                                                          }
                                                        ],
                                                        "node_type": "In",
                                                        "ref_id": "470"
                                                      }
                                                    ],
                                                    "node_type": "Or",
                                                    "ref_id": "471"
                                                  }
                                                ],
                                                "ref_id": "472"
                                              }
                                            ],
                                            "node_type": "Query",
                                            "ref_id": "473"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n    )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "473"
                                      }
                                    ],
                                    "node_type": "Exists",
                                    "ref_id": "474"
                                  }
                                ],
                                "node_type": "Or",
                                "ref_id": "475"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    or "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "exists "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"Encounters during Measurement Period\""
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ExpressionRef",
                                                    "ref_id": "476"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " Encounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "477"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "with "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "( "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "[\"Intervention, Order\": "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "\"Hospice Care SNO\""
                                                                          }
                                                                        ]
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "]"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Retrieve",
                                                                "ref_id": "478"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "&#13;\n          union "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "[\"Intervention, Performed\": "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "\"Hospice Care SNO\""
                                                                          }
                                                                        ]
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "]"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Retrieve",
                                                                "ref_id": "479"
                                                              }
                                                            ],
                                                            "node_type": "Union",
                                                            "ref_id": "480"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "&#13;\n          union "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "[\"Intervention, Recommended\": "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "\"Hospice Care SNO\""
                                                                      }
                                                                    ]
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "]"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Retrieve",
                                                            "ref_id": "481"
                                                          }
                                                        ],
                                                        "node_type": "Union",
                                                        "ref_id": "482"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " )"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Union",
                                                    "ref_id": "482"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " Hospice"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "483"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n          such that "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Hospice"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "484"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "authorDatetime"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "485"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "485"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " during "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ParameterRef",
                                                    "ref_id": "486"
                                                  }
                                                ],
                                                "node_type": "In",
                                                "ref_id": "487"
                                              }
                                            ],
                                            "ref_id": "488"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "489"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n    )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "489"
                                  }
                                ],
                                "node_type": "Exists",
                                "ref_id": "490"
                              }
                            ],
                            "node_type": "Or",
                            "ref_id": "491"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    or "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "exists "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Encounters during Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ExpressionRef",
                                                "ref_id": "492"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " Encounter"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "493"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "with "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "[\"Diagnosis\": "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"All Cancer\""
                                                              }
                                                            ]
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "]"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Retrieve",
                                                    "ref_id": "494"
                                                  }
                                                ],
                                                "node_type": "Retrieve",
                                                "ref_id": "494"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " CancerDiagnosis"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "495"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n          such that "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "CancerDiagnosis"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "496"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "prevalencePeriod"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "497"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "497"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "starts "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "1 year"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Quantity",
                                                        "ref_id": "500"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " or less before"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "In",
                                                    "ref_id": "501"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "start of "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"Measurement Period\""
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "ParameterRef",
                                                        "ref_id": "498"
                                                      }
                                                    ],
                                                    "node_type": "Start",
                                                    "ref_id": "499"
                                                  }
                                                ],
                                                "node_type": "In",
                                                "ref_id": "501"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n            or "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "CancerDiagnosis"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "502"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "prevalencePeriod"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "503"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "503"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " starts during "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ParameterRef",
                                                    "ref_id": "504"
                                                  }
                                                ],
                                                "node_type": "In",
                                                "ref_id": "505"
                                              }
                                            ],
                                            "node_type": "Or",
                                            "ref_id": "506"
                                          }
                                        ],
                                        "ref_id": "507"
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "508"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    )"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Query",
                                "ref_id": "508"
                              }
                            ],
                            "node_type": "Exists",
                            "ref_id": "509"
                          }
                        ],
                        "node_type": "Or",
                        "ref_id": "510"
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    or "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "exists "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "( "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Encounters during Measurement Period\""
                                                      }
                                                    ]
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "ExpressionRef",
                                            "ref_id": "511"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " Encounter"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "512"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n        "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "with "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "[\"Diagnosis\": "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Sickle Cell Disease SNOMEDCT\""
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "]"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Retrieve",
                                                "ref_id": "513"
                                              }
                                            ],
                                            "node_type": "Retrieve",
                                            "ref_id": "513"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " DiagnosisSickle"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "514"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n          such that "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "DiagnosisSickle"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "515"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "prevalencePeriod"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "516"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "516"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " starts before "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "start of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Measurement Period\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ParameterRef",
                                                    "ref_id": "517"
                                                  }
                                                ],
                                                "node_type": "Start",
                                                "ref_id": "518"
                                              }
                                            ],
                                            "node_type": "Before",
                                            "ref_id": "519"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n            or "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "DiagnosisSickle"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "520"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "prevalencePeriod"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "521"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "521"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " starts during "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Measurement Period\""
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ParameterRef",
                                                "ref_id": "522"
                                              }
                                            ],
                                            "node_type": "In",
                                            "ref_id": "523"
                                          }
                                        ],
                                        "node_type": "Or",
                                        "ref_id": "524"
                                      }
                                    ],
                                    "ref_id": "525"
                                  }
                                ],
                                "node_type": "Query",
                                "ref_id": "526"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    )"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "526"
                          }
                        ],
                        "node_type": "Exists",
                        "ref_id": "527"
                      }
                    ],
                    "node_type": "Or",
                    "ref_id": "528"
                  }
                ],
                "ref_id": "529"
              }
            ],
            "define_name": "Denominator Exclusion"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Cumulative Medication Duration\"(Medication "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "List<"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"Medication, Order\""
                              }
                            ]
                          }
                        ],
                        "ref_id": "534"
                      },
                      {
                        "children": [
                          {
                            "text": ">"
                          }
                        ]
                      }
                    ],
                    "ref_id": "535"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Sum("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "collapse"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Medication"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "536"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "relevantPeriod"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Query",
                                                        "ref_id": "537"
                                                      }
                                                    ],
                                                    "node_type": "Query",
                                                    "ref_id": "537"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Query",
                                                "ref_id": "537"
                                              }
                                            ],
                                            "node_type": "Collapse",
                                            "ref_id": "538"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Collapse",
                                        "ref_id": "538"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "CumulativeDosages"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "539"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return all "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "duration in days of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "CumulativeDosages"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "AliasRef",
                                        "ref_id": "540"
                                      }
                                    ],
                                    "node_type": "DurationBetween",
                                    "ref_id": "541"
                                  }
                                ],
                                "ref_id": "542"
                              }
                            ],
                            "ref_id": "543"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "Sum",
                        "ref_id": "544"
                      }
                    ],
                    "node_type": "Sum",
                    "ref_id": "544"
                  }
                ],
                "ref_id": "545"
              }
            ],
            "define_name": "Cumulative Medication Duration"
          }
        ],
        "identifier": {
          "id": "PotentialOpioidOveruse",
          "version": "0.1.068"
        }
      },
      "is_main_library": true,
      "is_top_level": true,
      "library_name": "PotentialOpioidOveruse",
      "library_version": "0.1.068",
      "statement_dependencies": [
        {
          "statement_name": "Patient"
        },
        {
          "statement_name": "SDE Ethnicity"
        },
        {
          "statement_name": "SDE Payer"
        },
        {
          "statement_name": "SDE Race"
        },
        {
          "statement_name": "SDE Sex"
        },
        {
          "statement_name": "OpioidMedications"
        },
        {
          "statement_name": "DosesPerDay"
        },
        {
          "statement_name": "Prescriptions with MME",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "OpioidMedications"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "DosesPerDay"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "CalculateMorphineMilligramEquivalents"
            }
          ]
        },
        {
          "statement_name": "Prescription Days",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Prescriptions with MME"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "DaysInPeriod"
            }
          ]
        },
        {
          "statement_name": "MME Days",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Prescription Days"
            }
          ]
        },
        {
          "statement_name": "MME Sum Days",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "MME Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "MME Days"
            }
          ]
        },
        {
          "statement_name": "MME Greater Than 90",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "MME Sum Days"
            }
          ]
        },
        {
          "statement_name": "Numerator",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "MME Greater Than 90"
            }
          ]
        },
        {
          "statement_name": "Encounters during Measurement Period"
        },
        {
          "statement_name": "Opioid Med Periods In Measurement Period",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "OpioidMedications"
            }
          ]
        },
        {
          "statement_name": "Opioid Periods",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Med Periods In Measurement Period"
            }
          ]
        },
        {
          "statement_name": "Gaps In Active Opioid Period",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Periods"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Periods"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Periods"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Periods"
            }
          ]
        },
        {
          "statement_name": "Gaps Greater Than 7 Days",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps In Active Opioid Period"
            }
          ]
        },
        {
          "statement_name": "Overall Active Opioid Period",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Med Periods In Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Med Periods In Measurement Period"
            }
          ]
        },
        {
          "statement_name": "Periods With Allowed Gaps",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Overall Active Opioid Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Overall Active Opioid Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Gaps Greater Than 7 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Overall Active Opioid Period"
            }
          ]
        },
        {
          "statement_name": "Cumulative Duration"
        },
        {
          "statement_name": "Periods With Allowed Gaps With Meds and Durations",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Periods With Allowed Gaps"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Opioid Med Periods In Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Cumulative Duration"
            }
          ]
        },
        {
          "statement_name": "Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Periods With Allowed Gaps With Meds and Durations"
            }
          ]
        },
        {
          "statement_name": "Initial Population",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "MATGlobalCommonFunctions",
              "statement_name": "CalendarAgeInYearsAt"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater"
            }
          ]
        },
        {
          "statement_name": "Denominator",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Initial Population"
            }
          ]
        },
        {
          "statement_name": "Denominator Exclusion",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            },
            {
              "hqmf_id": null,
              "library_name": "PotentialOpioidOveruse",
              "statement_name": "Encounters during Measurement Period"
            }
          ]
        },
        {
          "statement_name": "Cumulative Medication Duration"
        }
      ]
    },
    {
      "cql": "library DayMonthTimings version '0.6.000'\r\n\r\nusing QDM version '5.3'\r\n\r\ncodesystem \"LOINC\": 'urn:oid:2.16.840.1.113883.6.1'\r\ncodesystem \"SNOMEDCT\": 'urn:oid:2.16.840.1.113883.6.96'\r\n\r\ncode \"Birthdate\": '21112-8' from \"LOINC\" display 'Birthdate'\r\ncode \"Dead\": '419099009' from \"SNOMEDCT\" display 'Dead'\r\n\r\nparameter \"Measurement Period\" Interval<DateTime>\r\n\r\ncontext Patient\r\n\r\ndefine \"Months\":\r\n\t{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }\r\n\r\ndefine \"Months Containing 28 Days\":\r\n\t{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28 }\r\n\r\ndefine \"Months Containing 30 Days\":\r\n\t{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 }\r\n\r\ndefine \"Months Containing 31 Days\":\r\n\t{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 }\r\n\r\ndefine \"Months Containing 29 Days\":\r\n\t{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29 }\r\n\r\ndefine function \"DaysInYear\"(yr Integer):\r\n\tflatten ( Months Mo\r\n\t\t\treturn \"DaysInMonth\"(yr, Mo)\r\n\t)\r\n\r\ndefine function \"IsLeapYear\"(yr Integer):\r\n\t( yr mod 4 = 0\r\n\t\t\tand yr mod 100 != 0\r\n\t)\r\n\t\tor yr mod 400 = 0\r\n\r\ndefine function \"DaysInPeriod\"(period Interval<DateTime>):\r\n\tcase\r\n\t\twhen start of period is null\r\n\t\t\tor \r\n\t\t\tend of period is null then null\r\n\t\twhen start of period same year as \r\n\t\tend of period then case\r\n\t\t\twhen month from start of period = month from \r\n\t\t\tend of period then ( \"DaysInMonth\"(month from start of period, year from start of period)) D\r\n\t\t\t\twhere D same day or after start of period\r\n\t\t\t\t\tand D same day or before \r\n\t\t\t\t\tend of period \r\n\t\t\telse ( \"DaysInYear\"(year from start of period)) D\r\n\t\t\twhere D same day or after start of period\r\n\t\t\t\tand D same day or before \r\n\t\t\t\tend of period \r\n\t\tend\r\n\t\twhen difference in years between start of period and \r\n\t\tend of period = 1 then ( ( \"DaysInYear\"(year from start of period)) D\r\n\t\t\t\twhere D same day or after start of period\r\n\t\t\t\t\tand D same day or before \r\n\t\t\t\t\tend of period\r\n\t\t)\r\n\t\t\tunion ( ( \"DaysInYear\"(year from \r\n\t\t\t\t\tend of period\r\n\t\t\t\t)) D\r\n\t\t\t\t\twhere D same day or after start of period\r\n\t\t\t\t\t\tand D same day or before \r\n\t\t\t\t\t\tend of period\r\n\t\t\t) \r\n\t\telse null \r\n\tend\r\n\r\ndefine function \"DaysInMonth\"(yr Integer, mo Integer):\r\n\t(\r\n\tcase\r\n\t\twhen mo in { 1, 3, 5, 7, 8, 10, 12 } then \"Months Containing 31 Days\"\r\n\t\twhen mo = 2 then if \"IsLeapYear\"(yr)then \"Months Containing 29 Days\" \r\n\t\t\telse \"Months Containing 28 Days\" \r\n\t\telse \"Months Containing 30 Days\" \r\n\tend ) D\r\n\t\treturn DateTime(yr, mo, D)\r\n",
      "elm": {
        "library": {
          "identifier": {
            "id": "OpioidMedicationLogic",
            "version": "1.17.000"
          },
          "schemaIdentifier": {
            "id": "urn:hl7-org:elm",
            "version": "r1"
          },
          "usings": {
            "def": [
              {
                "localIdentifier": "System",
                "uri": "urn:hl7-org:elm-types:r1"
              },
              {
                "localId": "1",
                "localIdentifier": "QDM",
                "uri": "urn:healthit-gov:qdm:v5_3",
                "version": "5.3"
              }
            ]
          },
          "includes": {
            "def": [
              {
                "localId": "2",
                "localIdentifier": "OpioidDataLibrary",
                "path": "OpioidData",
                "version": "0.8.000"
              }
            ]
          },
          "parameters": {
            "def": [
              {
                "localId": "11",
                "name": "Measurement Period",
                "accessLevel": "Public",
                "parameterTypeSpecifier": {
                  "localId": "10",
                  "type": "IntervalTypeSpecifier",
                  "pointType": {
                    "localId": "9",
                    "name": "{urn:hl7-org:elm-types:r1}DateTime",
                    "type": "NamedTypeSpecifier"
                  }
                }
              }
            ]
          },
          "codeSystems": {
            "def": [
              {
                "localId": "3",
                "name": "LOINC",
                "id": "2.16.840.1.113883.6.1",
                "accessLevel": "Public"
              },
              {
                "localId": "4",
                "name": "SNOMEDCT",
                "id": "2.16.840.1.113883.6.96",
                "accessLevel": "Public"
              }
            ]
          },
          "codes": {
            "def": [
              {
                "localId": "6",
                "name": "Birthdate",
                "id": "21112-8",
                "display": "Birthdate",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "5",
                  "name": "LOINC"
                }
              },
              {
                "localId": "8",
                "name": "Dead",
                "id": "419099009",
                "display": "Dead",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "7",
                  "name": "SNOMEDCT"
                }
              }
            ]
          },
          "statements": {
            "def": [
              {
                "name": "Patient",
                "context": "Patient",
                "expression": {
                  "type": "SingletonFrom",
                  "operand": {
                    "dataType": "{urn:healthit-gov:qdm:v5_3}Patient",
                    "templateId": "Patient",
                    "type": "Retrieve"
                  }
                }
              },
              {
                "localId": "94",
                "name": "ToDaily",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "94",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"ToDaily\"",
                            "(",
                            "period",
                            " "
                          ]
                        },
                        {
                          "r": "12",
                          "s": [
                            {
                              "value": [
                                "System",
                                ".",
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "frequency",
                            " "
                          ]
                        },
                        {
                          "r": "13",
                          "s": [
                            {
                              "value": [
                                "Integer"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function calculates the daily dosage of medication using the Period (Years, Months, Weeks, Days, Hours, Minutes or Seconds) to determine frequency */\r\n\t"
                          ]
                        },
                        {
                          "r": "93",
                          "s": [
                            {
                              "r": "93",
                              "s": [
                                {
                                  "value": [
                                    "case "
                                  ]
                                },
                                {
                                  "r": "15",
                                  "s": [
                                    {
                                      "r": "14",
                                      "s": [
                                        {
                                          "value": [
                                            "period"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "15",
                                      "s": [
                                        {
                                          "value": [
                                            "unit"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "23",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "16",
                                      "s": [
                                        {
                                          "value": [
                                            "'h'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "22",
                                      "s": [
                                        {
                                          "r": "17",
                                          "s": [
                                            {
                                              "value": [
                                                "frequency"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " * "
                                          ]
                                        },
                                        {
                                          "r": "21",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "21",
                                              "s": [
                                                {
                                                  "r": "18",
                                                  "value": [
                                                    "24.0",
                                                    " / "
                                                  ]
                                                },
                                                {
                                                  "r": "20",
                                                  "s": [
                                                    {
                                                      "r": "19",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "period"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "20",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "value"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "33",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "24",
                                      "s": [
                                        {
                                          "value": [
                                            "'min'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "32",
                                      "s": [
                                        {
                                          "r": "30",
                                          "s": [
                                            {
                                              "r": "25",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "29",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "29",
                                                  "s": [
                                                    {
                                                      "r": "26",
                                                      "value": [
                                                        "24.0",
                                                        " / "
                                                      ]
                                                    },
                                                    {
                                                      "r": "28",
                                                      "s": [
                                                        {
                                                          "r": "27",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "28",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " )"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " * ",
                                            "60"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "45",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "34",
                                      "s": [
                                        {
                                          "value": [
                                            "'s'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "44",
                                      "s": [
                                        {
                                          "r": "42",
                                          "s": [
                                            {
                                              "r": "40",
                                              "s": [
                                                {
                                                  "r": "35",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "frequency"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " * "
                                                  ]
                                                },
                                                {
                                                  "r": "39",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "( "
                                                      ]
                                                    },
                                                    {
                                                      "r": "39",
                                                      "s": [
                                                        {
                                                          "r": "36",
                                                          "value": [
                                                            "24.0",
                                                            " / "
                                                          ]
                                                        },
                                                        {
                                                          "r": "38",
                                                          "s": [
                                                            {
                                                              "r": "37",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "period"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "38",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "value"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " )"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * ",
                                                "60"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " * ",
                                            "60"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "55",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "46",
                                      "s": [
                                        {
                                          "value": [
                                            "'d'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "54",
                                      "s": [
                                        {
                                          "r": "52",
                                          "s": [
                                            {
                                              "r": "47",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "51",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "51",
                                                  "s": [
                                                    {
                                                      "r": "48",
                                                      "value": [
                                                        "24.0",
                                                        " / "
                                                      ]
                                                    },
                                                    {
                                                      "r": "50",
                                                      "s": [
                                                        {
                                                          "r": "49",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "50",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " )"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " / ",
                                            "24"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "67",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "56",
                                      "s": [
                                        {
                                          "value": [
                                            "'wk'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "66",
                                      "s": [
                                        {
                                          "r": "62",
                                          "s": [
                                            {
                                              "r": "57",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "61",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "61",
                                                  "s": [
                                                    {
                                                      "r": "58",
                                                      "value": [
                                                        "24.0",
                                                        " / "
                                                      ]
                                                    },
                                                    {
                                                      "r": "60",
                                                      "s": [
                                                        {
                                                          "r": "59",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "60",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " )"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " / "
                                          ]
                                        },
                                        {
                                          "r": "65",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "65",
                                              "s": [
                                                {
                                                  "r": "63",
                                                  "value": [
                                                    "24",
                                                    " * ",
                                                    "7"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "79",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "68",
                                      "s": [
                                        {
                                          "value": [
                                            "'mo'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "78",
                                      "s": [
                                        {
                                          "r": "74",
                                          "s": [
                                            {
                                              "r": "69",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "73",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "73",
                                                  "s": [
                                                    {
                                                      "r": "70",
                                                      "value": [
                                                        "24.0",
                                                        " / "
                                                      ]
                                                    },
                                                    {
                                                      "r": "72",
                                                      "s": [
                                                        {
                                                          "r": "71",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "72",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " )"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " / "
                                          ]
                                        },
                                        {
                                          "r": "77",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "77",
                                              "s": [
                                                {
                                                  "r": "75",
                                                  "value": [
                                                    "24",
                                                    " * ",
                                                    "30"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /* assuming 30 days in month */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "91",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "80",
                                      "s": [
                                        {
                                          "value": [
                                            "'a'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "90",
                                      "s": [
                                        {
                                          "r": "86",
                                          "s": [
                                            {
                                              "r": "81",
                                              "s": [
                                                {
                                                  "value": [
                                                    "frequency"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "85",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "85",
                                                  "s": [
                                                    {
                                                      "r": "82",
                                                      "value": [
                                                        "24.0",
                                                        " / "
                                                      ]
                                                    },
                                                    {
                                                      "r": "84",
                                                      "s": [
                                                        {
                                                          "r": "83",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "84",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " )"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " / "
                                          ]
                                        },
                                        {
                                          "r": "89",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "89",
                                              "s": [
                                                {
                                                  "r": "87",
                                                  "value": [
                                                    "24",
                                                    " * ",
                                                    "365"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /* assuming 365 days in year */ \r\n\t\telse ",
                                    "null",
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "93",
                  "type": "Case",
                  "comparand": {
                    "localId": "15",
                    "path": "unit",
                    "type": "Property",
                    "source": {
                      "localId": "14",
                      "name": "period",
                      "type": "OperandRef"
                    }
                  },
                  "caseItem": [
                    {
                      "localId": "23",
                      "when": {
                        "localId": "16",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "h",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "22",
                        "type": "Multiply",
                        "operand": [
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "17",
                              "name": "frequency",
                              "type": "OperandRef"
                            }
                          },
                          {
                            "localId": "21",
                            "type": "Divide",
                            "operand": [
                              {
                                "localId": "18",
                                "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                "value": "24.0",
                                "type": "Literal"
                              },
                              {
                                "localId": "20",
                                "path": "value",
                                "type": "Property",
                                "source": {
                                  "localId": "19",
                                  "name": "period",
                                  "type": "OperandRef"
                                }
                              }
                            ]
                          }
                        ]
                      }
                    },
                    {
                      "localId": "33",
                      "when": {
                        "localId": "24",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "min",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "32",
                        "type": "Multiply",
                        "operand": [
                          {
                            "localId": "30",
                            "type": "Multiply",
                            "operand": [
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "25",
                                  "name": "frequency",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "29",
                                "type": "Divide",
                                "operand": [
                                  {
                                    "localId": "26",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                    "value": "24.0",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "28",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "27",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "31",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "60",
                              "type": "Literal"
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "45",
                      "when": {
                        "localId": "34",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "s",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "44",
                        "type": "Multiply",
                        "operand": [
                          {
                            "localId": "42",
                            "type": "Multiply",
                            "operand": [
                              {
                                "localId": "40",
                                "type": "Multiply",
                                "operand": [
                                  {
                                    "type": "ToDecimal",
                                    "operand": {
                                      "localId": "35",
                                      "name": "frequency",
                                      "type": "OperandRef"
                                    }
                                  },
                                  {
                                    "localId": "39",
                                    "type": "Divide",
                                    "operand": [
                                      {
                                        "localId": "36",
                                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                        "value": "24.0",
                                        "type": "Literal"
                                      },
                                      {
                                        "localId": "38",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "37",
                                          "name": "period",
                                          "type": "OperandRef"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "41",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "60",
                                  "type": "Literal"
                                }
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "43",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "60",
                              "type": "Literal"
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "55",
                      "when": {
                        "localId": "46",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "d",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "54",
                        "type": "Divide",
                        "operand": [
                          {
                            "localId": "52",
                            "type": "Multiply",
                            "operand": [
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "47",
                                  "name": "frequency",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "51",
                                "type": "Divide",
                                "operand": [
                                  {
                                    "localId": "48",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                    "value": "24.0",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "50",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "49",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "53",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "24",
                              "type": "Literal"
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "67",
                      "when": {
                        "localId": "56",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "wk",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "66",
                        "type": "Divide",
                        "operand": [
                          {
                            "localId": "62",
                            "type": "Multiply",
                            "operand": [
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "57",
                                  "name": "frequency",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "61",
                                "type": "Divide",
                                "operand": [
                                  {
                                    "localId": "58",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                    "value": "24.0",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "60",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "59",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "65",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "63",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "24",
                                  "type": "Literal"
                                },
                                {
                                  "localId": "64",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "7",
                                  "type": "Literal"
                                }
                              ]
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "79",
                      "when": {
                        "localId": "68",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "mo",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "78",
                        "type": "Divide",
                        "operand": [
                          {
                            "localId": "74",
                            "type": "Multiply",
                            "operand": [
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "69",
                                  "name": "frequency",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "73",
                                "type": "Divide",
                                "operand": [
                                  {
                                    "localId": "70",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                    "value": "24.0",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "72",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "71",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "77",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "75",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "24",
                                  "type": "Literal"
                                },
                                {
                                  "localId": "76",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "30",
                                  "type": "Literal"
                                }
                              ]
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "91",
                      "when": {
                        "localId": "80",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "a",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "90",
                        "type": "Divide",
                        "operand": [
                          {
                            "localId": "86",
                            "type": "Multiply",
                            "operand": [
                              {
                                "type": "ToDecimal",
                                "operand": {
                                  "localId": "81",
                                  "name": "frequency",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "85",
                                "type": "Divide",
                                "operand": [
                                  {
                                    "localId": "82",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                                    "value": "24.0",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "84",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "83",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "type": "ToDecimal",
                            "operand": {
                              "localId": "89",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "87",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "24",
                                  "type": "Literal"
                                },
                                {
                                  "localId": "88",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "365",
                                  "type": "Literal"
                                }
                              ]
                            }
                          }
                        ]
                      }
                    }
                  ],
                  "else": {
                    "asType": "{urn:hl7-org:elm-types:r1}Decimal",
                    "type": "As",
                    "operand": {
                      "localId": "92",
                      "type": "Null"
                    }
                  }
                },
                "operand": [
                  {
                    "name": "period",
                    "operandTypeSpecifier": {
                      "localId": "12",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "frequency",
                    "operandTypeSpecifier": {
                      "localId": "13",
                      "name": "{urn:hl7-org:elm-types:r1}Integer",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "153",
                "name": "ToUnifiedCodeForUnitsOfMeasure",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "153",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"ToUnifiedCodeForUnitsOfMeasure\"",
                            "(",
                            "unit",
                            " "
                          ]
                        },
                        {
                          "r": "133",
                          "s": [
                            {
                              "value": [
                                "String"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function converts the dose units to the correct Unified Code for Units Of Measure (UCUM) unit */\r\n\t"
                          ]
                        },
                        {
                          "r": "152",
                          "s": [
                            {
                              "r": "152",
                              "s": [
                                {
                                  "value": [
                                    "case "
                                  ]
                                },
                                {
                                  "r": "134",
                                  "s": [
                                    {
                                      "value": [
                                        "unit"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "137",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "135",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "136",
                                      "s": [
                                        {
                                          "value": [
                                            "'mg'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "140",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "138",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "139",
                                      "s": [
                                        {
                                          "value": [
                                            "'mg/{actuat}'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "143",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "141",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "142",
                                      "s": [
                                        {
                                          "value": [
                                            "'mg/h'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "146",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "144",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "145",
                                      "s": [
                                        {
                                          "value": [
                                            "'mg/mL'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\t\telse "
                                  ]
                                },
                                {
                                  "r": "151",
                                  "s": [
                                    {
                                      "r": "149",
                                      "s": [
                                        {
                                          "r": "147",
                                          "s": [
                                            {
                                              "value": [
                                                "'unknown{'"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " + "
                                          ]
                                        },
                                        {
                                          "r": "148",
                                          "s": [
                                            {
                                              "value": [
                                                "unit"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " + "
                                      ]
                                    },
                                    {
                                      "r": "150",
                                      "s": [
                                        {
                                          "value": [
                                            "'}'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "152",
                  "type": "Case",
                  "comparand": {
                    "localId": "134",
                    "name": "unit",
                    "type": "OperandRef"
                  },
                  "caseItem": [
                    {
                      "localId": "137",
                      "when": {
                        "localId": "135",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "MG",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "136",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "mg",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "140",
                      "when": {
                        "localId": "138",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "MG/ACTUAT",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "139",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "mg/{actuat}",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "143",
                      "when": {
                        "localId": "141",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "MG/HR",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "142",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "mg/h",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "146",
                      "when": {
                        "localId": "144",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "MG/ML",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "145",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "mg/mL",
                        "type": "Literal"
                      }
                    }
                  ],
                  "else": {
                    "localId": "151",
                    "type": "Concatenate",
                    "operand": [
                      {
                        "localId": "149",
                        "type": "Concatenate",
                        "operand": [
                          {
                            "localId": "147",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "unknown{",
                            "type": "Literal"
                          },
                          {
                            "localId": "148",
                            "name": "unit",
                            "type": "OperandRef"
                          }
                        ]
                      },
                      {
                        "localId": "150",
                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                        "value": "}",
                        "type": "Literal"
                      }
                    ]
                  }
                },
                "operand": [
                  {
                    "name": "unit",
                    "operandTypeSpecifier": {
                      "localId": "133",
                      "name": "{urn:hl7-org:elm-types:r1}String",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "181",
                "name": "EnsureMicrogramQuantity",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "181",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"EnsureMicrogramQuantity\"",
                            "(",
                            "strength",
                            " "
                          ]
                        },
                        {
                          "r": "156",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function checks the Drug strength, and if it is less than 0.1 and the strength unit (mg) is zero, then the Quantity is set to the strength value x 1000 and unit of mcg */\r\n\t"
                          ]
                        },
                        {
                          "r": "180",
                          "s": [
                            {
                              "r": "180",
                              "s": [
                                {
                                  "value": [
                                    "if "
                                  ]
                                },
                                {
                                  "r": "167",
                                  "s": [
                                    {
                                      "r": "160",
                                      "s": [
                                        {
                                          "r": "158",
                                          "s": [
                                            {
                                              "r": "157",
                                              "s": [
                                                {
                                                  "value": [
                                                    "strength"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "158",
                                              "s": [
                                                {
                                                  "value": [
                                                    "value"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "<",
                                            " ",
                                            "0.1"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\tand "
                                      ]
                                    },
                                    {
                                      "r": "166",
                                      "s": [
                                        {
                                          "value": [
                                            "( "
                                          ]
                                        },
                                        {
                                          "r": "166",
                                          "s": [
                                            {
                                              "r": "164",
                                              "s": [
                                                {
                                                  "value": [
                                                    "PositionOf",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "161",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "'mg'"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "163",
                                                  "s": [
                                                    {
                                                      "r": "162",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "163",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "=",
                                                " ",
                                                "0"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " )"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " then "
                                  ]
                                },
                                {
                                  "r": "178",
                                  "s": [
                                    {
                                      "value": [
                                        "Quantity",
                                        " { "
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "value",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "171",
                                          "s": [
                                            {
                                              "r": "169",
                                              "s": [
                                                {
                                                  "r": "168",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "strength"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "169",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "value"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * ",
                                                "1000"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ", "
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "unit",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "177",
                                          "s": [
                                            {
                                              "r": "172",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mcg'"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " + "
                                              ]
                                            },
                                            {
                                              "r": "176",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Substring",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "174",
                                                  "s": [
                                                    {
                                                      "r": "173",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "174",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", ",
                                                    "2",
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "}"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\t\telse "
                                  ]
                                },
                                {
                                  "r": "179",
                                  "s": [
                                    {
                                      "value": [
                                        "strength"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "180",
                  "type": "If",
                  "condition": {
                    "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                    "type": "As",
                    "operand": {
                      "localId": "167",
                      "type": "And",
                      "operand": [
                        {
                          "localId": "160",
                          "type": "Less",
                          "operand": [
                            {
                              "localId": "158",
                              "path": "value",
                              "type": "Property",
                              "source": {
                                "localId": "157",
                                "name": "strength",
                                "type": "OperandRef"
                              }
                            },
                            {
                              "localId": "159",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "0.1",
                              "type": "Literal"
                            }
                          ]
                        },
                        {
                          "localId": "166",
                          "type": "Equal",
                          "operand": [
                            {
                              "localId": "164",
                              "type": "PositionOf",
                              "pattern": {
                                "localId": "161",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mg",
                                "type": "Literal"
                              },
                              "string": {
                                "localId": "163",
                                "path": "unit",
                                "type": "Property",
                                "source": {
                                  "localId": "162",
                                  "name": "strength",
                                  "type": "OperandRef"
                                }
                              }
                            },
                            {
                              "localId": "165",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "0",
                              "type": "Literal"
                            }
                          ]
                        }
                      ]
                    }
                  },
                  "then": {
                    "localId": "178",
                    "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                    "type": "Instance",
                    "element": [
                      {
                        "name": "value",
                        "value": {
                          "localId": "171",
                          "type": "Multiply",
                          "operand": [
                            {
                              "localId": "169",
                              "path": "value",
                              "type": "Property",
                              "source": {
                                "localId": "168",
                                "name": "strength",
                                "type": "OperandRef"
                              }
                            },
                            {
                              "type": "ToDecimal",
                              "operand": {
                                "localId": "170",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "1000",
                                "type": "Literal"
                              }
                            }
                          ]
                        }
                      },
                      {
                        "name": "unit",
                        "value": {
                          "localId": "177",
                          "type": "Concatenate",
                          "operand": [
                            {
                              "localId": "172",
                              "valueType": "{urn:hl7-org:elm-types:r1}String",
                              "value": "mcg",
                              "type": "Literal"
                            },
                            {
                              "localId": "176",
                              "type": "Substring",
                              "stringToSub": {
                                "localId": "174",
                                "path": "unit",
                                "type": "Property",
                                "source": {
                                  "localId": "173",
                                  "name": "strength",
                                  "type": "OperandRef"
                                }
                              },
                              "startIndex": {
                                "localId": "175",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "2",
                                "type": "Literal"
                              }
                            }
                          ]
                        }
                      }
                    ]
                  },
                  "else": {
                    "localId": "179",
                    "name": "strength",
                    "type": "OperandRef"
                  }
                },
                "operand": [
                  {
                    "name": "strength",
                    "operandTypeSpecifier": {
                      "localId": "156",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "186",
                "name": "GetIngredients",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "186",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"GetIngredients\"",
                            "(",
                            "rxNormCode",
                            " "
                          ]
                        },
                        {
                          "r": "95",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function matches the Drug code to the Opioid Data Library Drug Code, then returns the Drug Code, Drug Name, Dose Form, Strength and Unit*/\r\n\t"
                          ]
                        },
                        {
                          "r": "185",
                          "s": [
                            {
                              "r": "185",
                              "s": [
                                {
                                  "s": [
                                    {
                                      "r": "97",
                                      "s": [
                                        {
                                          "r": "96",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "OpioidDataLibrary",
                                                    ".",
                                                    "\"DrugIngredients\""
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "DrugIngredientElement"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "103",
                                  "s": [
                                    {
                                      "value": [
                                        "where "
                                      ]
                                    },
                                    {
                                      "r": "103",
                                      "s": [
                                        {
                                          "r": "99",
                                          "s": [
                                            {
                                              "r": "98",
                                              "s": [
                                                {
                                                  "value": [
                                                    "DrugIngredientElement"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "99",
                                              "s": [
                                                {
                                                  "value": [
                                                    "drugCode"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "=",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "102",
                                          "s": [
                                            {
                                              "value": [
                                                "ToInteger",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "101",
                                              "s": [
                                                {
                                                  "r": "100",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "rxNormCode"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "101",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "code"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "184",
                                  "s": [
                                    {
                                      "value": [
                                        "return "
                                      ]
                                    },
                                    {
                                      "r": "183",
                                      "s": [
                                        {
                                          "value": [
                                            "{\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "rxNormCode",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "110",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Code",
                                                    " { "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "code",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "106",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToString",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "105",
                                                          "s": [
                                                            {
                                                              "r": "104",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "DrugIngredientElement"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "105",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "drugCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "system",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "107",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'2.16.840.1.113883.6.88'"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "display",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "109",
                                                      "s": [
                                                        {
                                                          "r": "108",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "DrugIngredientElement"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "109",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "drugName"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "doseFormCode",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "117",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Code",
                                                    " { "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "code",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "113",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToString",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "112",
                                                          "s": [
                                                            {
                                                              "r": "111",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "DrugIngredientElement"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "112",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "system",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "114",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'2.16.840.1.113883.6.88'"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "display",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "116",
                                                      "s": [
                                                        {
                                                          "r": "115",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "DrugIngredientElement"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "116",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "doseFormName"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "doseFormName",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "119",
                                              "s": [
                                                {
                                                  "r": "118",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "DrugIngredientElement"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "119",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "doseFormName"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "ingredientCode",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "126",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Code",
                                                    " { "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "code",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "122",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToString",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "121",
                                                          "s": [
                                                            {
                                                              "r": "120",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "DrugIngredientElement"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "121",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "system",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "123",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'2.16.840.1.113883.6.88'"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "display",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "125",
                                                      "s": [
                                                        {
                                                          "r": "124",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "DrugIngredientElement"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "125",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "ingredientName"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "ingredientName",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "128",
                                              "s": [
                                                {
                                                  "r": "127",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "DrugIngredientElement"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "128",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "ingredientName"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ",\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "strength",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "182",
                                              "s": [
                                                {
                                                  "value": [
                                                    "EnsureMicrogramQuantity",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "155",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "Quantity",
                                                        " { "
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "value",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "130",
                                                          "s": [
                                                            {
                                                              "r": "129",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "DrugIngredientElement"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "130",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "strengthValue"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ", "
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "154",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "ToUnifiedCodeForUnitsOfMeasure",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "132",
                                                              "s": [
                                                                {
                                                                  "r": "131",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "DrugIngredientElement"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "132",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "strengthUnit"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "}"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t}"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "185",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "97",
                      "alias": "DrugIngredientElement",
                      "expression": {
                        "localId": "96",
                        "name": "DrugIngredients",
                        "libraryName": "OpioidDataLibrary",
                        "type": "ExpressionRef"
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "103",
                    "type": "Equal",
                    "operand": [
                      {
                        "localId": "99",
                        "path": "drugCode",
                        "scope": "DrugIngredientElement",
                        "type": "Property"
                      },
                      {
                        "localId": "102",
                        "type": "ToInteger",
                        "operand": {
                          "localId": "101",
                          "path": "code",
                          "type": "Property",
                          "source": {
                            "localId": "100",
                            "name": "rxNormCode",
                            "type": "OperandRef"
                          }
                        }
                      }
                    ]
                  },
                  "return": {
                    "localId": "184",
                    "expression": {
                      "localId": "183",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "rxNormCode",
                          "value": {
                            "localId": "110",
                            "classType": "{urn:hl7-org:elm-types:r1}Code",
                            "type": "Instance",
                            "element": [
                              {
                                "name": "code",
                                "value": {
                                  "localId": "106",
                                  "type": "ToString",
                                  "operand": {
                                    "localId": "105",
                                    "path": "drugCode",
                                    "scope": "DrugIngredientElement",
                                    "type": "Property"
                                  }
                                }
                              },
                              {
                                "name": "system",
                                "value": {
                                  "localId": "107",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": "2.16.840.1.113883.6.88",
                                  "type": "Literal"
                                }
                              },
                              {
                                "name": "display",
                                "value": {
                                  "localId": "109",
                                  "path": "drugName",
                                  "scope": "DrugIngredientElement",
                                  "type": "Property"
                                }
                              }
                            ]
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "117",
                            "classType": "{urn:hl7-org:elm-types:r1}Code",
                            "type": "Instance",
                            "element": [
                              {
                                "name": "code",
                                "value": {
                                  "localId": "113",
                                  "type": "ToString",
                                  "operand": {
                                    "localId": "112",
                                    "path": "doseFormCode",
                                    "scope": "DrugIngredientElement",
                                    "type": "Property"
                                  }
                                }
                              },
                              {
                                "name": "system",
                                "value": {
                                  "localId": "114",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": "2.16.840.1.113883.6.88",
                                  "type": "Literal"
                                }
                              },
                              {
                                "name": "display",
                                "value": {
                                  "localId": "116",
                                  "path": "doseFormName",
                                  "scope": "DrugIngredientElement",
                                  "type": "Property"
                                }
                              }
                            ]
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "119",
                            "path": "doseFormName",
                            "scope": "DrugIngredientElement",
                            "type": "Property"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "126",
                            "classType": "{urn:hl7-org:elm-types:r1}Code",
                            "type": "Instance",
                            "element": [
                              {
                                "name": "code",
                                "value": {
                                  "localId": "122",
                                  "type": "ToString",
                                  "operand": {
                                    "localId": "121",
                                    "path": "ingredientCode",
                                    "scope": "DrugIngredientElement",
                                    "type": "Property"
                                  }
                                }
                              },
                              {
                                "name": "system",
                                "value": {
                                  "localId": "123",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": "2.16.840.1.113883.6.88",
                                  "type": "Literal"
                                }
                              },
                              {
                                "name": "display",
                                "value": {
                                  "localId": "125",
                                  "path": "ingredientName",
                                  "scope": "DrugIngredientElement",
                                  "type": "Property"
                                }
                              }
                            ]
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "128",
                            "path": "ingredientName",
                            "scope": "DrugIngredientElement",
                            "type": "Property"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "182",
                            "name": "EnsureMicrogramQuantity",
                            "type": "FunctionRef",
                            "operand": [
                              {
                                "localId": "155",
                                "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                                "type": "Instance",
                                "element": [
                                  {
                                    "name": "value",
                                    "value": {
                                      "localId": "130",
                                      "path": "strengthValue",
                                      "scope": "DrugIngredientElement",
                                      "type": "Property"
                                    }
                                  },
                                  {
                                    "name": "unit",
                                    "value": {
                                      "localId": "154",
                                      "name": "ToUnifiedCodeForUnitsOfMeasure",
                                      "type": "FunctionRef",
                                      "operand": [
                                        {
                                          "localId": "132",
                                          "path": "strengthUnit",
                                          "scope": "DrugIngredientElement",
                                          "type": "Property"
                                        }
                                      ]
                                    }
                                  }
                                ]
                              }
                            ]
                          }
                        }
                      ]
                    }
                  }
                },
                "operand": [
                  {
                    "name": "rxNormCode",
                    "operandTypeSpecifier": {
                      "localId": "95",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "193",
                "name": "IsTransdermalPatch",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "193",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"IsTransdermalPatch\"",
                            "(",
                            "doseFormCode",
                            " "
                          ]
                        },
                        {
                          "r": "187",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/*This function examines Drug Form Code, and if given dose form is a patch (transdermal), then returns 'true' for any functions using that value*/\r\n\t"
                          ]
                        },
                        {
                          "r": "192",
                          "s": [
                            {
                              "r": "192",
                              "s": [
                                {
                                  "r": "190",
                                  "s": [
                                    {
                                      "value": [
                                        "ToInteger",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "189",
                                      "s": [
                                        {
                                          "r": "188",
                                          "s": [
                                            {
                                              "value": [
                                                "doseFormCode"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "189",
                                          "s": [
                                            {
                                              "value": [
                                                "code"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "=",
                                    " ",
                                    "316987"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "192",
                  "type": "Equal",
                  "operand": [
                    {
                      "localId": "190",
                      "type": "ToInteger",
                      "operand": {
                        "localId": "189",
                        "path": "code",
                        "type": "Property",
                        "source": {
                          "localId": "188",
                          "name": "doseFormCode",
                          "type": "OperandRef"
                        }
                      }
                    },
                    {
                      "localId": "191",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "316987",
                      "type": "Literal"
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "doseFormCode",
                    "operandTypeSpecifier": {
                      "localId": "187",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "311",
                "name": "GetMedicationDailyDose",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "311",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"GetMedicationDailyDose\"",
                            "(",
                            "ingredientCode",
                            " "
                          ]
                        },
                        {
                          "r": "223",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "strength",
                            " "
                          ]
                        },
                        {
                          "r": "224",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseFormCode",
                            " "
                          ]
                        },
                        {
                          "r": "225",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseQuantity",
                            " "
                          ]
                        },
                        {
                          "r": "226",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "dosesPerDay",
                            " "
                          ]
                        },
                        {
                          "r": "227",
                          "s": [
                            {
                              "value": [
                                "Decimal"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Quantity that will be used by the Calculate MME function*/\r\n\t"
                          ]
                        },
                        {
                          "r": "310",
                          "s": [
                            {
                              "r": "310",
                              "s": [
                                {
                                  "value": [
                                    "case\r\n\t  /* if patch --> daily dose = dose value (e.g, number patches with doseQuantity unit = \"patch\") * per-hour strength */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "247",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "229",
                                      "s": [
                                        {
                                          "value": [
                                            "\"IsTransdermalPatch\"",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "228",
                                          "s": [
                                            {
                                              "value": [
                                                "doseFormCode"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "then\r\n\t      /* buprenorphine or fentanyl patch */ "
                                      ]
                                    },
                                    {
                                      "r": "246",
                                      "s": [
                                        {
                                          "value": [
                                            "if "
                                          ]
                                        },
                                        {
                                          "r": "236",
                                          "s": [
                                            {
                                              "r": "232",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ToInteger",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "231",
                                                  "s": [
                                                    {
                                                      "r": "230",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ingredientCode"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "231",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "code"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "in "
                                              ]
                                            },
                                            {
                                              "r": "235",
                                              "s": [
                                                {
                                                  "value": [
                                                    "{ ",
                                                    "1819",
                                                    ", ",
                                                    "4337",
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " then "
                                          ]
                                        },
                                        {
                                          "r": "244",
                                          "s": [
                                            {
                                              "value": [
                                                "Quantity",
                                                " { "
                                              ]
                                            },
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "value",
                                                    ": "
                                                  ]
                                                },
                                                {
                                                  "r": "241",
                                                  "s": [
                                                    {
                                                      "r": "238",
                                                      "s": [
                                                        {
                                                          "r": "237",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "doseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "238",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " * "
                                                      ]
                                                    },
                                                    {
                                                      "r": "240",
                                                      "s": [
                                                        {
                                                          "r": "239",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "strength"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "240",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", "
                                              ]
                                            },
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "unit",
                                                    ": "
                                                  ]
                                                },
                                                {
                                                  "r": "243",
                                                  "s": [
                                                    {
                                                      "r": "242",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "243",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " }"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " \r\n\t\t\telse ",
                                            "null"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\r\n\t\r\n\t    /* if dose unit in actual mass units (mg or mcg -- when it's a single med) --> daily dose = numTimesPerDay * dose */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "261",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "253",
                                      "s": [
                                        {
                                          "r": "249",
                                          "s": [
                                            {
                                              "r": "248",
                                              "s": [
                                                {
                                                  "value": [
                                                    "doseQuantity"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "249",
                                              "s": [
                                                {
                                                  "value": [
                                                    "unit"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " in "
                                          ]
                                        },
                                        {
                                          "r": "252",
                                          "s": [
                                            {
                                              "value": [
                                                "{ "
                                              ]
                                            },
                                            {
                                              "r": "250",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mg'"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", "
                                              ]
                                            },
                                            {
                                              "r": "251",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mcg'"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " }"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "260",
                                      "s": [
                                        {
                                          "value": [
                                            "Quantity",
                                            " { "
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "value",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "257",
                                              "s": [
                                                {
                                                  "r": "254",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "dosesPerDay"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " * "
                                                  ]
                                                },
                                                {
                                                  "r": "256",
                                                  "s": [
                                                    {
                                                      "r": "255",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseQuantity"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "256",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "value"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ", "
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "unit",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "259",
                                              "s": [
                                                {
                                                  "r": "258",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "doseQuantity"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "259",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "unit"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " }"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\r\n\t\r\n\t    /* if doseQuantity is in actual volume units (mL) --> daily dose = numTimesPerDay * dose * strength */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "293",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "276",
                                      "s": [
                                        {
                                          "r": "265",
                                          "s": [
                                            {
                                              "r": "263",
                                              "s": [
                                                {
                                                  "r": "262",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "doseQuantity"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "263",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "unit"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "=",
                                                " "
                                              ]
                                            },
                                            {
                                              "r": "264",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mL'"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\tand "
                                          ]
                                        },
                                        {
                                          "r": "275",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "275",
                                              "s": [
                                                {
                                                  "r": "269",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "PositionOf",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "266",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'/mL'"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ", "
                                                      ]
                                                    },
                                                    {
                                                      "r": "268",
                                                      "s": [
                                                        {
                                                          "r": "267",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "strength"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "268",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "unit"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "=",
                                                    " "
                                                  ]
                                                },
                                                {
                                                  "r": "274",
                                                  "s": [
                                                    {
                                                      "r": "272",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Length",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "271",
                                                          "s": [
                                                            {
                                                              "r": "270",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "strength"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "271",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "unit"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "- ",
                                                        "3"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "292",
                                      "s": [
                                        {
                                          "value": [
                                            "Quantity",
                                            " { "
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "value",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "283",
                                              "s": [
                                                {
                                                  "r": "280",
                                                  "s": [
                                                    {
                                                      "r": "277",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "dosesPerDay"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " * "
                                                      ]
                                                    },
                                                    {
                                                      "r": "279",
                                                      "s": [
                                                        {
                                                          "r": "278",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "doseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "279",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " * "
                                                  ]
                                                },
                                                {
                                                  "r": "282",
                                                  "s": [
                                                    {
                                                      "r": "281",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "282",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "value"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ", "
                                          ]
                                        },
                                        {
                                          "s": [
                                            {
                                              "value": [
                                                "unit",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "291",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Substring",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "285",
                                                  "s": [
                                                    {
                                                      "r": "284",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "285",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", ",
                                                    "0",
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "290",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "PositionOf",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "287",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'/'"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ", "
                                                      ]
                                                    },
                                                    {
                                                      "r": "289",
                                                      "s": [
                                                        {
                                                          "r": "288",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "strength"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "289",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "unit"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "}"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\r\n\t\r\n\t/* if doseQuantity is not in actual units (e.g., 1 tab, 1 spray -- when it's a combo med with a unit of tablet, or it's mg/actuat) -->  daily dose = numTimesPerDay * dose value * strength value */ \r\n\t\telse "
                                  ]
                                },
                                {
                                  "r": "309",
                                  "s": [
                                    {
                                      "value": [
                                        "Quantity",
                                        " { "
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "value",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "300",
                                          "s": [
                                            {
                                              "r": "297",
                                              "s": [
                                                {
                                                  "r": "294",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "dosesPerDay"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " * "
                                                  ]
                                                },
                                                {
                                                  "r": "296",
                                                  "s": [
                                                    {
                                                      "r": "295",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseQuantity"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "296",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "value"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " * "
                                              ]
                                            },
                                            {
                                              "r": "299",
                                              "s": [
                                                {
                                                  "r": "298",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "strength"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "299",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "value"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ", "
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "unit",
                                            ": "
                                          ]
                                        },
                                        {
                                          "r": "308",
                                          "s": [
                                            {
                                              "value": [
                                                "Substring",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "302",
                                              "s": [
                                                {
                                                  "r": "301",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "strength"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "302",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "unit"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", ",
                                                "0",
                                                ", "
                                              ]
                                            },
                                            {
                                              "r": "307",
                                              "s": [
                                                {
                                                  "value": [
                                                    "PositionOf",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "304",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "'/'"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "306",
                                                  "s": [
                                                    {
                                                      "r": "305",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "306",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "unit"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "}"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "310",
                  "type": "Case",
                  "caseItem": [
                    {
                      "localId": "247",
                      "when": {
                        "localId": "229",
                        "name": "IsTransdermalPatch",
                        "type": "FunctionRef",
                        "operand": [
                          {
                            "localId": "228",
                            "name": "doseFormCode",
                            "type": "OperandRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "246",
                        "type": "If",
                        "condition": {
                          "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                          "type": "As",
                          "operand": {
                            "localId": "236",
                            "type": "In",
                            "operand": [
                              {
                                "localId": "232",
                                "type": "ToInteger",
                                "operand": {
                                  "localId": "231",
                                  "path": "code",
                                  "type": "Property",
                                  "source": {
                                    "localId": "230",
                                    "name": "ingredientCode",
                                    "type": "OperandRef"
                                  }
                                }
                              },
                              {
                                "localId": "235",
                                "type": "List",
                                "element": [
                                  {
                                    "localId": "233",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "1819",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "234",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "4337",
                                    "type": "Literal"
                                  }
                                ]
                              }
                            ]
                          }
                        },
                        "then": {
                          "localId": "244",
                          "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                          "type": "Instance",
                          "element": [
                            {
                              "name": "value",
                              "value": {
                                "localId": "241",
                                "type": "Multiply",
                                "operand": [
                                  {
                                    "localId": "238",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "237",
                                      "name": "doseQuantity",
                                      "type": "OperandRef"
                                    }
                                  },
                                  {
                                    "localId": "240",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "239",
                                      "name": "strength",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            },
                            {
                              "name": "unit",
                              "value": {
                                "localId": "243",
                                "path": "unit",
                                "type": "Property",
                                "source": {
                                  "localId": "242",
                                  "name": "strength",
                                  "type": "OperandRef"
                                }
                              }
                            }
                          ]
                        },
                        "else": {
                          "asType": "{urn:hl7-org:elm-types:r1}Quantity",
                          "type": "As",
                          "operand": {
                            "localId": "245",
                            "type": "Null"
                          }
                        }
                      }
                    },
                    {
                      "localId": "261",
                      "when": {
                        "localId": "253",
                        "type": "In",
                        "operand": [
                          {
                            "localId": "249",
                            "path": "unit",
                            "type": "Property",
                            "source": {
                              "localId": "248",
                              "name": "doseQuantity",
                              "type": "OperandRef"
                            }
                          },
                          {
                            "localId": "252",
                            "type": "List",
                            "element": [
                              {
                                "localId": "250",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mg",
                                "type": "Literal"
                              },
                              {
                                "localId": "251",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mcg",
                                "type": "Literal"
                              }
                            ]
                          }
                        ]
                      },
                      "then": {
                        "localId": "260",
                        "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                        "type": "Instance",
                        "element": [
                          {
                            "name": "value",
                            "value": {
                              "localId": "257",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "254",
                                  "name": "dosesPerDay",
                                  "type": "OperandRef"
                                },
                                {
                                  "localId": "256",
                                  "path": "value",
                                  "type": "Property",
                                  "source": {
                                    "localId": "255",
                                    "name": "doseQuantity",
                                    "type": "OperandRef"
                                  }
                                }
                              ]
                            }
                          },
                          {
                            "name": "unit",
                            "value": {
                              "localId": "259",
                              "path": "unit",
                              "type": "Property",
                              "source": {
                                "localId": "258",
                                "name": "doseQuantity",
                                "type": "OperandRef"
                              }
                            }
                          }
                        ]
                      }
                    },
                    {
                      "localId": "293",
                      "when": {
                        "localId": "276",
                        "type": "And",
                        "operand": [
                          {
                            "localId": "265",
                            "type": "Equal",
                            "operand": [
                              {
                                "localId": "263",
                                "path": "unit",
                                "type": "Property",
                                "source": {
                                  "localId": "262",
                                  "name": "doseQuantity",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "264",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mL",
                                "type": "Literal"
                              }
                            ]
                          },
                          {
                            "localId": "275",
                            "type": "Equal",
                            "operand": [
                              {
                                "localId": "269",
                                "type": "PositionOf",
                                "pattern": {
                                  "localId": "266",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": "/mL",
                                  "type": "Literal"
                                },
                                "string": {
                                  "localId": "268",
                                  "path": "unit",
                                  "type": "Property",
                                  "source": {
                                    "localId": "267",
                                    "name": "strength",
                                    "type": "OperandRef"
                                  }
                                }
                              },
                              {
                                "localId": "274",
                                "type": "Subtract",
                                "operand": [
                                  {
                                    "localId": "272",
                                    "type": "Length",
                                    "operand": {
                                      "localId": "271",
                                      "path": "unit",
                                      "type": "Property",
                                      "source": {
                                        "localId": "270",
                                        "name": "strength",
                                        "type": "OperandRef"
                                      }
                                    }
                                  },
                                  {
                                    "localId": "273",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "3",
                                    "type": "Literal"
                                  }
                                ]
                              }
                            ]
                          }
                        ]
                      },
                      "then": {
                        "localId": "292",
                        "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                        "type": "Instance",
                        "element": [
                          {
                            "name": "value",
                            "value": {
                              "localId": "283",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "280",
                                  "type": "Multiply",
                                  "operand": [
                                    {
                                      "localId": "277",
                                      "name": "dosesPerDay",
                                      "type": "OperandRef"
                                    },
                                    {
                                      "localId": "279",
                                      "path": "value",
                                      "type": "Property",
                                      "source": {
                                        "localId": "278",
                                        "name": "doseQuantity",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                },
                                {
                                  "localId": "282",
                                  "path": "value",
                                  "type": "Property",
                                  "source": {
                                    "localId": "281",
                                    "name": "strength",
                                    "type": "OperandRef"
                                  }
                                }
                              ]
                            }
                          },
                          {
                            "name": "unit",
                            "value": {
                              "localId": "291",
                              "type": "Substring",
                              "stringToSub": {
                                "localId": "285",
                                "path": "unit",
                                "type": "Property",
                                "source": {
                                  "localId": "284",
                                  "name": "strength",
                                  "type": "OperandRef"
                                }
                              },
                              "startIndex": {
                                "localId": "286",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "0",
                                "type": "Literal"
                              },
                              "length": {
                                "localId": "290",
                                "type": "PositionOf",
                                "pattern": {
                                  "localId": "287",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": "/",
                                  "type": "Literal"
                                },
                                "string": {
                                  "localId": "289",
                                  "path": "unit",
                                  "type": "Property",
                                  "source": {
                                    "localId": "288",
                                    "name": "strength",
                                    "type": "OperandRef"
                                  }
                                }
                              }
                            }
                          }
                        ]
                      }
                    }
                  ],
                  "else": {
                    "localId": "309",
                    "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                    "type": "Instance",
                    "element": [
                      {
                        "name": "value",
                        "value": {
                          "localId": "300",
                          "type": "Multiply",
                          "operand": [
                            {
                              "localId": "297",
                              "type": "Multiply",
                              "operand": [
                                {
                                  "localId": "294",
                                  "name": "dosesPerDay",
                                  "type": "OperandRef"
                                },
                                {
                                  "localId": "296",
                                  "path": "value",
                                  "type": "Property",
                                  "source": {
                                    "localId": "295",
                                    "name": "doseQuantity",
                                    "type": "OperandRef"
                                  }
                                }
                              ]
                            },
                            {
                              "localId": "299",
                              "path": "value",
                              "type": "Property",
                              "source": {
                                "localId": "298",
                                "name": "strength",
                                "type": "OperandRef"
                              }
                            }
                          ]
                        }
                      },
                      {
                        "name": "unit",
                        "value": {
                          "localId": "308",
                          "type": "Substring",
                          "stringToSub": {
                            "localId": "302",
                            "path": "unit",
                            "type": "Property",
                            "source": {
                              "localId": "301",
                              "name": "strength",
                              "type": "OperandRef"
                            }
                          },
                          "startIndex": {
                            "localId": "303",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "0",
                            "type": "Literal"
                          },
                          "length": {
                            "localId": "307",
                            "type": "PositionOf",
                            "pattern": {
                              "localId": "304",
                              "valueType": "{urn:hl7-org:elm-types:r1}String",
                              "value": "/",
                              "type": "Literal"
                            },
                            "string": {
                              "localId": "306",
                              "path": "unit",
                              "type": "Property",
                              "source": {
                                "localId": "305",
                                "name": "strength",
                                "type": "OperandRef"
                              }
                            }
                          }
                        }
                      }
                    ]
                  }
                },
                "operand": [
                  {
                    "name": "ingredientCode",
                    "operandTypeSpecifier": {
                      "localId": "223",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "strength",
                    "operandTypeSpecifier": {
                      "localId": "224",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseFormCode",
                    "operandTypeSpecifier": {
                      "localId": "225",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseQuantity",
                    "operandTypeSpecifier": {
                      "localId": "226",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "dosesPerDay",
                    "operandTypeSpecifier": {
                      "localId": "227",
                      "name": "{urn:hl7-org:elm-types:r1}Decimal",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "532",
                "name": "GetConversionFactor",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "532",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"GetConversionFactor\"",
                            "(",
                            "ingredientCode",
                            " "
                          ]
                        },
                        {
                          "r": "319",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "dailyDose",
                            " "
                          ]
                        },
                        {
                          "r": "320",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseFormCode",
                            " "
                          ]
                        },
                        {
                          "r": "321",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function specifies the conversion factor (based on the Ingredient Code) to be used by the Calculate MME function */\r\n\t"
                          ]
                        },
                        {
                          "r": "531",
                          "s": [
                            {
                              "r": "531",
                              "s": [
                                {
                                  "value": [
                                    "case "
                                  ]
                                },
                                {
                                  "r": "324",
                                  "s": [
                                    {
                                      "value": [
                                        "ToInteger",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "323",
                                      "s": [
                                        {
                                          "r": "322",
                                          "s": [
                                            {
                                              "value": [
                                                "ingredientCode"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "."
                                          ]
                                        },
                                        {
                                          "r": "323",
                                          "s": [
                                            {
                                              "value": [
                                                "code"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "327",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "161",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "  /*\tAcetaminophen */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "330",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1191",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tAspirin */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "333",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1223",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tAtropine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "336",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1767",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tBrompheniramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "347",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1819",
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "346",
                                      "s": [
                                        {
                                          "value": [
                                            "( /*\tBuprenorphine */ "
                                          ]
                                        },
                                        {
                                          "r": "346",
                                          "s": [
                                            {
                                              "value": [
                                                "case\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "344",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "342",
                                                  "s": [
                                                    {
                                                      "r": "340",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToInteger",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "339",
                                                          "s": [
                                                            {
                                                              "r": "338",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "339",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "code"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "=",
                                                        " ",
                                                        "316987"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "12.6"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " /* Transdermal system */ \r\n\t\t\t\telse ",
                                                "30",
                                                " /* Tablet or Film (or Film in MCG) */ \r\n\t\t\tend"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t)"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "350",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1841",
                                        " then ",
                                        "7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tButorphanol */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "353",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "1886",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tCaffeine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "356",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "2101",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tCarisoprodol */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "359",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "2354",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tchlorcyclizine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "362",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "2400",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tChlorpheniramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "365",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "2670",
                                        " then ",
                                        "0.15"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tCodeine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "368",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "3423",
                                        " then ",
                                        "4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tHydromorphone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "371",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "3498",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tDiphenhydramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "405",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "4337",
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "404",
                                      "s": [
                                        {
                                          "value": [
                                            "( /*\tFentanyl */ "
                                          ]
                                        },
                                        {
                                          "r": "404",
                                          "s": [
                                            {
                                              "value": [
                                                "case\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "382",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "380",
                                                  "s": [
                                                    {
                                                      "r": "375",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToInteger",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "374",
                                                          "s": [
                                                            {
                                                              "r": "373",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "374",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "code"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "in "
                                                      ]
                                                    },
                                                    {
                                                      "r": "379",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "{ ",
                                                            "970789",
                                                            ", ",
                                                            "317007",
                                                            ", ",
                                                            "316992",
                                                            " }"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "0.13"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " /* Buccal Tablet, Sublingual Tablet, Oral Lozenge */\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "389",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "387",
                                                  "s": [
                                                    {
                                                      "r": "385",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToInteger",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "384",
                                                          "s": [
                                                            {
                                                              "r": "383",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "384",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "code"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "=",
                                                        " ",
                                                        "346163"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "0.18"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " /* Buccal Film */\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "398",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "396",
                                                  "s": [
                                                    {
                                                      "r": "392",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToInteger",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "391",
                                                          "s": [
                                                            {
                                                              "r": "390",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "391",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "code"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "in "
                                                      ]
                                                    },
                                                    {
                                                      "r": "395",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "{ ",
                                                            "126542",
                                                            ", ",
                                                            "346163",
                                                            " }"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "0.16"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " /* Nasal Spray, Mucosal Spray */\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "402",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "400",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"IsTransdermalPatch\"",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "399",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseFormCode"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "then ",
                                                    "7.2"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " /* Transdermal system */ \r\n\t\t\t\telse ",
                                                "1000",
                                                " \r\n\t\t\tend"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t)"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "408",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "5032",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tGuaifenesin */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "411",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "5489",
                                        " then ",
                                        "1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tHydrocodone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "414",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "5640",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tIbuprofen */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "417",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "6102",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tKaolin */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "420",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "6378",
                                        " then ",
                                        "11"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tLevorphanol (NOTE: Given as Levorphanol tartrate in the CDC conversion table) */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "423",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "6754",
                                        " then ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tMeperidine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "454",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "6813",
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "453",
                                      "s": [
                                        {
                                          "value": [
                                            "( /*\tMethadone */ "
                                          ]
                                        },
                                        {
                                          "r": "453",
                                          "s": [
                                            {
                                              "value": [
                                                "case\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "431",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "429",
                                                  "s": [
                                                    {
                                                      "r": "426",
                                                      "s": [
                                                        {
                                                          "r": "425",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "426",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " between ",
                                                        "1",
                                                        " and ",
                                                        "20"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "4"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "438",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "436",
                                                  "s": [
                                                    {
                                                      "r": "433",
                                                      "s": [
                                                        {
                                                          "r": "432",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "433",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " between ",
                                                        "21",
                                                        " and ",
                                                        "40"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "8"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "445",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "443",
                                                  "s": [
                                                    {
                                                      "r": "440",
                                                      "s": [
                                                        {
                                                          "r": "439",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "440",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " between ",
                                                        "41",
                                                        " and ",
                                                        "60"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "10"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "451",
                                              "s": [
                                                {
                                                  "value": [
                                                    "when "
                                                  ]
                                                },
                                                {
                                                  "r": "449",
                                                  "s": [
                                                    {
                                                      "r": "447",
                                                      "s": [
                                                        {
                                                          "r": "446",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "."
                                                          ]
                                                        },
                                                        {
                                                          "r": "447",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        ">=",
                                                        " ",
                                                        "61"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " then ",
                                                    "12"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " \r\n\t\t\t\telse ",
                                                "1000",
                                                " \r\n\t\t\tend"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t)"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "457",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7052",
                                        " then ",
                                        "1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tMorphine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "460",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7238",
                                        " then ",
                                        "1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*Nalbuphine*/\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "463",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7242",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tNaloxone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "466",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7243",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tNaltrexone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "469",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7676",
                                        " then ",
                                        "1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*Opium*/\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "472",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7804",
                                        " then ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tOxycodone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "475",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "7814",
                                        " then ",
                                        "3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tOxymorphone */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "478",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "8001",
                                        " then ",
                                        "0.37"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPentazocine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "481",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "8163",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPhenylephrine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "484",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "8175",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPhenylpropanolamine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "487",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "8745",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPromethazine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "490",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "8896",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPseudoephedrine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "493",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "9009",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tPyrilamine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "496",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "10689",
                                        " then ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tTramadol */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "499",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "10849",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tTriprolidine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "502",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "19759",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tbromodiphenhydramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "505",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "19860",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tbutalbital */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "508",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "22696",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tdexbrompheniramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "511",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "22697",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tdexchlorpheniramine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "514",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "23088",
                                        " then ",
                                        "0.25"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tdihydrocodeine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "517",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "27084",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\thomatropine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "520",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "35780",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tropivacaine */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "523",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "237005",
                                        " then ",
                                        "8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tLevomethadyl (NOTE: given as Levomethadyl acetate in the CDC conversion table) */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "526",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "636827",
                                        " then ",
                                        "0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\tguaiacolsulfonate */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "529",
                                  "s": [
                                    {
                                      "value": [
                                        "when ",
                                        "787390",
                                        " then ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " /*\ttapentadol */ \r\n\t\telse ",
                                    "0",
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "531",
                  "type": "Case",
                  "comparand": {
                    "localId": "324",
                    "type": "ToInteger",
                    "operand": {
                      "localId": "323",
                      "path": "code",
                      "type": "Property",
                      "source": {
                        "localId": "322",
                        "name": "ingredientCode",
                        "type": "OperandRef"
                      }
                    }
                  },
                  "caseItem": [
                    {
                      "localId": "327",
                      "when": {
                        "localId": "325",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "161",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "326",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "330",
                      "when": {
                        "localId": "328",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1191",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "329",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "333",
                      "when": {
                        "localId": "331",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1223",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "332",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "336",
                      "when": {
                        "localId": "334",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1767",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "335",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "347",
                      "when": {
                        "localId": "337",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1819",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "346",
                        "type": "Case",
                        "caseItem": [
                          {
                            "localId": "344",
                            "when": {
                              "localId": "342",
                              "type": "Equal",
                              "operand": [
                                {
                                  "localId": "340",
                                  "type": "ToInteger",
                                  "operand": {
                                    "localId": "339",
                                    "path": "code",
                                    "type": "Property",
                                    "source": {
                                      "localId": "338",
                                      "name": "doseFormCode",
                                      "type": "OperandRef"
                                    }
                                  }
                                },
                                {
                                  "localId": "341",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "316987",
                                  "type": "Literal"
                                }
                              ]
                            },
                            "then": {
                              "localId": "343",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "12.6",
                              "type": "Literal"
                            }
                          }
                        ],
                        "else": {
                          "type": "ToDecimal",
                          "operand": {
                            "localId": "345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "30",
                            "type": "Literal"
                          }
                        }
                      }
                    },
                    {
                      "localId": "350",
                      "when": {
                        "localId": "348",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1841",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "349",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "7",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "353",
                      "when": {
                        "localId": "351",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "1886",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "352",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "356",
                      "when": {
                        "localId": "354",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "2101",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "355",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "359",
                      "when": {
                        "localId": "357",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "2354",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "358",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "362",
                      "when": {
                        "localId": "360",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "2400",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "361",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "365",
                      "when": {
                        "localId": "363",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "2670",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "364",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.15",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "368",
                      "when": {
                        "localId": "366",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "3423",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "367",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "4",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "371",
                      "when": {
                        "localId": "369",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "3498",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "370",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "405",
                      "when": {
                        "localId": "372",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "4337",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "404",
                        "type": "Case",
                        "caseItem": [
                          {
                            "localId": "382",
                            "when": {
                              "localId": "380",
                              "type": "In",
                              "operand": [
                                {
                                  "localId": "375",
                                  "type": "ToInteger",
                                  "operand": {
                                    "localId": "374",
                                    "path": "code",
                                    "type": "Property",
                                    "source": {
                                      "localId": "373",
                                      "name": "doseFormCode",
                                      "type": "OperandRef"
                                    }
                                  }
                                },
                                {
                                  "localId": "379",
                                  "type": "List",
                                  "element": [
                                    {
                                      "localId": "376",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "970789",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "377",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "317007",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "378",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "316992",
                                      "type": "Literal"
                                    }
                                  ]
                                }
                              ]
                            },
                            "then": {
                              "localId": "381",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "0.13",
                              "type": "Literal"
                            }
                          },
                          {
                            "localId": "389",
                            "when": {
                              "localId": "387",
                              "type": "Equal",
                              "operand": [
                                {
                                  "localId": "385",
                                  "type": "ToInteger",
                                  "operand": {
                                    "localId": "384",
                                    "path": "code",
                                    "type": "Property",
                                    "source": {
                                      "localId": "383",
                                      "name": "doseFormCode",
                                      "type": "OperandRef"
                                    }
                                  }
                                },
                                {
                                  "localId": "386",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "346163",
                                  "type": "Literal"
                                }
                              ]
                            },
                            "then": {
                              "localId": "388",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "0.18",
                              "type": "Literal"
                            }
                          },
                          {
                            "localId": "398",
                            "when": {
                              "localId": "396",
                              "type": "In",
                              "operand": [
                                {
                                  "localId": "392",
                                  "type": "ToInteger",
                                  "operand": {
                                    "localId": "391",
                                    "path": "code",
                                    "type": "Property",
                                    "source": {
                                      "localId": "390",
                                      "name": "doseFormCode",
                                      "type": "OperandRef"
                                    }
                                  }
                                },
                                {
                                  "localId": "395",
                                  "type": "List",
                                  "element": [
                                    {
                                      "localId": "393",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "126542",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "394",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "346163",
                                      "type": "Literal"
                                    }
                                  ]
                                }
                              ]
                            },
                            "then": {
                              "localId": "397",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "0.16",
                              "type": "Literal"
                            }
                          },
                          {
                            "localId": "402",
                            "when": {
                              "localId": "400",
                              "name": "IsTransdermalPatch",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "399",
                                  "name": "doseFormCode",
                                  "type": "OperandRef"
                                }
                              ]
                            },
                            "then": {
                              "localId": "401",
                              "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                              "value": "7.2",
                              "type": "Literal"
                            }
                          }
                        ],
                        "else": {
                          "type": "ToDecimal",
                          "operand": {
                            "localId": "403",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1000",
                            "type": "Literal"
                          }
                        }
                      }
                    },
                    {
                      "localId": "408",
                      "when": {
                        "localId": "406",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "5032",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "407",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "411",
                      "when": {
                        "localId": "409",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "5489",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "410",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "1",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "414",
                      "when": {
                        "localId": "412",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "5640",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "413",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "417",
                      "when": {
                        "localId": "415",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "6102",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "416",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "420",
                      "when": {
                        "localId": "418",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "6378",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "419",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "11",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "423",
                      "when": {
                        "localId": "421",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "6754",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "422",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.1",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "454",
                      "when": {
                        "localId": "424",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "6813",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "453",
                          "type": "Case",
                          "caseItem": [
                            {
                              "localId": "431",
                              "when": {
                                "localId": "429",
                                "type": "And",
                                "operand": [
                                  {
                                    "type": "GreaterOrEqual",
                                    "operand": [
                                      {
                                        "localId": "426",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "425",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "427",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "1",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "type": "LessOrEqual",
                                    "operand": [
                                      {
                                        "localId": "426",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "425",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "428",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "20",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "then": {
                                "localId": "430",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "4",
                                "type": "Literal"
                              }
                            },
                            {
                              "localId": "438",
                              "when": {
                                "localId": "436",
                                "type": "And",
                                "operand": [
                                  {
                                    "type": "GreaterOrEqual",
                                    "operand": [
                                      {
                                        "localId": "433",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "432",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "434",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "21",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "type": "LessOrEqual",
                                    "operand": [
                                      {
                                        "localId": "433",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "432",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "435",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "40",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "then": {
                                "localId": "437",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "8",
                                "type": "Literal"
                              }
                            },
                            {
                              "localId": "445",
                              "when": {
                                "localId": "443",
                                "type": "And",
                                "operand": [
                                  {
                                    "type": "GreaterOrEqual",
                                    "operand": [
                                      {
                                        "localId": "440",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "439",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "441",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "41",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "type": "LessOrEqual",
                                    "operand": [
                                      {
                                        "localId": "440",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "439",
                                          "name": "dailyDose",
                                          "type": "OperandRef"
                                        }
                                      },
                                      {
                                        "type": "ToDecimal",
                                        "operand": {
                                          "localId": "442",
                                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                          "value": "60",
                                          "type": "Literal"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              },
                              "then": {
                                "localId": "444",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "10",
                                "type": "Literal"
                              }
                            },
                            {
                              "localId": "451",
                              "when": {
                                "localId": "449",
                                "type": "GreaterOrEqual",
                                "operand": [
                                  {
                                    "localId": "447",
                                    "path": "value",
                                    "type": "Property",
                                    "source": {
                                      "localId": "446",
                                      "name": "dailyDose",
                                      "type": "OperandRef"
                                    }
                                  },
                                  {
                                    "type": "ToDecimal",
                                    "operand": {
                                      "localId": "448",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "61",
                                      "type": "Literal"
                                    }
                                  }
                                ]
                              },
                              "then": {
                                "localId": "450",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "12",
                                "type": "Literal"
                              }
                            }
                          ],
                          "else": {
                            "localId": "452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1000",
                            "type": "Literal"
                          }
                        }
                      }
                    },
                    {
                      "localId": "457",
                      "when": {
                        "localId": "455",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7052",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "456",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "1",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "460",
                      "when": {
                        "localId": "458",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7238",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "459",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "1",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "463",
                      "when": {
                        "localId": "461",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7242",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "462",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "466",
                      "when": {
                        "localId": "464",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7243",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "465",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "469",
                      "when": {
                        "localId": "467",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7676",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "468",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "1",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "472",
                      "when": {
                        "localId": "470",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7804",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "471",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "1.5",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "475",
                      "when": {
                        "localId": "473",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "7814",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "474",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "3",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "478",
                      "when": {
                        "localId": "476",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "8001",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "477",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.37",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "481",
                      "when": {
                        "localId": "479",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "8163",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "480",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "484",
                      "when": {
                        "localId": "482",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "8175",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "483",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "487",
                      "when": {
                        "localId": "485",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "8745",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "486",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "490",
                      "when": {
                        "localId": "488",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "8896",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "489",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "493",
                      "when": {
                        "localId": "491",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "9009",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "492",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "496",
                      "when": {
                        "localId": "494",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "10689",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "495",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.1",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "499",
                      "when": {
                        "localId": "497",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "10849",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "498",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "502",
                      "when": {
                        "localId": "500",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "19759",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "501",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "505",
                      "when": {
                        "localId": "503",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "19860",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "504",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "508",
                      "when": {
                        "localId": "506",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "22696",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "507",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "511",
                      "when": {
                        "localId": "509",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "22697",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "510",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "514",
                      "when": {
                        "localId": "512",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "23088",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "513",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.25",
                        "type": "Literal"
                      }
                    },
                    {
                      "localId": "517",
                      "when": {
                        "localId": "515",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "27084",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "516",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "520",
                      "when": {
                        "localId": "518",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "35780",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "519",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "523",
                      "when": {
                        "localId": "521",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "237005",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "522",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "8",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "526",
                      "when": {
                        "localId": "524",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "636827",
                        "type": "Literal"
                      },
                      "then": {
                        "type": "ToDecimal",
                        "operand": {
                          "localId": "525",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      }
                    },
                    {
                      "localId": "529",
                      "when": {
                        "localId": "527",
                        "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                        "value": "787390",
                        "type": "Literal"
                      },
                      "then": {
                        "localId": "528",
                        "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                        "value": "0.4",
                        "type": "Literal"
                      }
                    }
                  ],
                  "else": {
                    "type": "ToDecimal",
                    "operand": {
                      "localId": "530",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "0",
                      "type": "Literal"
                    }
                  }
                },
                "operand": [
                  {
                    "name": "ingredientCode",
                    "operandTypeSpecifier": {
                      "localId": "319",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "dailyDose",
                    "operandTypeSpecifier": {
                      "localId": "320",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseFormCode",
                    "operandTypeSpecifier": {
                      "localId": "321",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "639",
                "name": "GetMedDailyDoseDescription",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "639",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"GetMedDailyDoseDescription\"",
                            "(",
                            "ingredientCode",
                            " "
                          ]
                        },
                        {
                          "r": "549",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "ingredientName",
                            " "
                          ]
                        },
                        {
                          "r": "550",
                          "s": [
                            {
                              "value": [
                                "String"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "strength",
                            " "
                          ]
                        },
                        {
                          "r": "551",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseFormCode",
                            " "
                          ]
                        },
                        {
                          "r": "552",
                          "s": [
                            {
                              "value": [
                                "Code"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseFormName",
                            " "
                          ]
                        },
                        {
                          "r": "553",
                          "s": [
                            {
                              "value": [
                                "String"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "doseQuantity",
                            " "
                          ]
                        },
                        {
                          "r": "554",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "dosesPerDay",
                            " "
                          ]
                        },
                        {
                          "r": "555",
                          "s": [
                            {
                              "value": [
                                "Decimal"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "dailyDose",
                            " "
                          ]
                        },
                        {
                          "r": "556",
                          "s": [
                            {
                              "value": [
                                "Quantity"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Name that will be used by the Calculate MME function*/\r\n\t"
                          ]
                        },
                        {
                          "r": "638",
                          "s": [
                            {
                              "r": "638",
                              "s": [
                                {
                                  "value": [
                                    "case\r\n\t    /* if patch */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "585",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "558",
                                      "s": [
                                        {
                                          "value": [
                                            "\"IsTransdermalPatch\"",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "557",
                                          "s": [
                                            {
                                              "value": [
                                                "doseFormCode"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "then\r\n\t      /* buprenorphine or fentanyl patch */ "
                                      ]
                                    },
                                    {
                                      "r": "584",
                                      "s": [
                                        {
                                          "value": [
                                            "if "
                                          ]
                                        },
                                        {
                                          "r": "565",
                                          "s": [
                                            {
                                              "r": "561",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ToInteger",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "560",
                                                  "s": [
                                                    {
                                                      "r": "559",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ingredientCode"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "560",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "code"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "in "
                                              ]
                                            },
                                            {
                                              "r": "564",
                                              "s": [
                                                {
                                                  "value": [
                                                    "{ ",
                                                    "1819",
                                                    ", ",
                                                    "4337",
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " then "
                                          ]
                                        },
                                        {
                                          "r": "582",
                                          "s": [
                                            {
                                              "r": "579",
                                              "s": [
                                                {
                                                  "r": "577",
                                                  "s": [
                                                    {
                                                      "r": "574",
                                                      "s": [
                                                        {
                                                          "r": "572",
                                                          "s": [
                                                            {
                                                              "r": "568",
                                                              "s": [
                                                                {
                                                                  "r": "566",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "ingredientName"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " + "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "567",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "' patch: '"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " + "
                                                              ]
                                                            },
                                                            {
                                                              "r": "571",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ToString",
                                                                    "("
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "570",
                                                                  "s": [
                                                                    {
                                                                      "r": "569",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "doseQuantity"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "570",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "value"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ")"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "+ "
                                                          ]
                                                        },
                                                        {
                                                          "r": "573",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "' * '"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " + "
                                                      ]
                                                    },
                                                    {
                                                      "r": "576",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToString",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "575",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "strength"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "+ "
                                                  ]
                                                },
                                                {
                                                  "r": "578",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "' = '"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " + "
                                              ]
                                            },
                                            {
                                              "r": "581",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ToString",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "580",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "dailyDose"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\telse ",
                                            "null"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\r\n\t\r\n\t    /* if dose unit in actual mass units (mg or mcg -- when it's a single med) */\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "612",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "591",
                                      "s": [
                                        {
                                          "r": "587",
                                          "s": [
                                            {
                                              "r": "586",
                                              "s": [
                                                {
                                                  "value": [
                                                    "doseQuantity"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "587",
                                              "s": [
                                                {
                                                  "value": [
                                                    "unit"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " in "
                                          ]
                                        },
                                        {
                                          "r": "590",
                                          "s": [
                                            {
                                              "value": [
                                                "{ "
                                              ]
                                            },
                                            {
                                              "r": "588",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mg'"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", "
                                              ]
                                            },
                                            {
                                              "r": "589",
                                              "s": [
                                                {
                                                  "value": [
                                                    "'mcg'"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " }"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "611",
                                      "s": [
                                        {
                                          "r": "608",
                                          "s": [
                                            {
                                              "r": "606",
                                              "s": [
                                                {
                                                  "r": "603",
                                                  "s": [
                                                    {
                                                      "r": "601",
                                                      "s": [
                                                        {
                                                          "r": "598",
                                                          "s": [
                                                            {
                                                              "r": "596",
                                                              "s": [
                                                                {
                                                                  "r": "594",
                                                                  "s": [
                                                                    {
                                                                      "r": "592",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "ingredientName"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        " + "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "593",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "' '"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " + "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "595",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "doseFormName"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " + "
                                                              ]
                                                            },
                                                            {
                                                              "r": "597",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "': '"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " + "
                                                          ]
                                                        },
                                                        {
                                                          "r": "600",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "ToString",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "599",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "dosesPerDay"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "+ "
                                                      ]
                                                    },
                                                    {
                                                      "r": "602",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "'/d * '"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " + "
                                                  ]
                                                },
                                                {
                                                  "r": "605",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "ToString",
                                                        "("
                                                      ]
                                                    },
                                                    {
                                                      "r": "604",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseQuantity"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ")"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "+ "
                                              ]
                                            },
                                            {
                                              "r": "607",
                                              "s": [
                                                {
                                                  "value": [
                                                    "' = '"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " + "
                                          ]
                                        },
                                        {
                                          "r": "610",
                                          "s": [
                                            {
                                              "value": [
                                                "ToString",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "609",
                                              "s": [
                                                {
                                                  "value": [
                                                    "dailyDose"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\r\n\t\r\n\t    /* if doseQuantity in actual volume units (mL) or not in actual units (e.g. 1 tab, 1 spray) */\r\n\t\telse "
                                  ]
                                },
                                {
                                  "r": "637",
                                  "s": [
                                    {
                                      "r": "634",
                                      "s": [
                                        {
                                          "r": "632",
                                          "s": [
                                            {
                                              "r": "629",
                                              "s": [
                                                {
                                                  "r": "627",
                                                  "s": [
                                                    {
                                                      "r": "624",
                                                      "s": [
                                                        {
                                                          "r": "622",
                                                          "s": [
                                                            {
                                                              "r": "619",
                                                              "s": [
                                                                {
                                                                  "r": "617",
                                                                  "s": [
                                                                    {
                                                                      "r": "615",
                                                                      "s": [
                                                                        {
                                                                          "r": "613",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "ingredientName"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            " + "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "614",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "' '"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        " + "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "616",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "doseFormName"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " + "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "618",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "': '"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " + "
                                                              ]
                                                            },
                                                            {
                                                              "r": "621",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ToString",
                                                                    "("
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "620",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "dosesPerDay"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ")"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "+ "
                                                          ]
                                                        },
                                                        {
                                                          "r": "623",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "'/d * '"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " + "
                                                      ]
                                                    },
                                                    {
                                                      "r": "626",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ToString",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "625",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "doseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "+ "
                                                  ]
                                                },
                                                {
                                                  "r": "628",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "' * '"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " + "
                                              ]
                                            },
                                            {
                                              "r": "631",
                                              "s": [
                                                {
                                                  "value": [
                                                    "ToString",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "630",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "strength"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "+ "
                                          ]
                                        },
                                        {
                                          "r": "633",
                                          "s": [
                                            {
                                              "value": [
                                                "' = '"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " + "
                                      ]
                                    },
                                    {
                                      "r": "636",
                                      "s": [
                                        {
                                          "value": [
                                            "ToString",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "635",
                                          "s": [
                                            {
                                              "value": [
                                                "dailyDose"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "638",
                  "type": "Case",
                  "caseItem": [
                    {
                      "localId": "585",
                      "when": {
                        "localId": "558",
                        "name": "IsTransdermalPatch",
                        "type": "FunctionRef",
                        "operand": [
                          {
                            "localId": "557",
                            "name": "doseFormCode",
                            "type": "OperandRef"
                          }
                        ]
                      },
                      "then": {
                        "localId": "584",
                        "type": "If",
                        "condition": {
                          "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                          "type": "As",
                          "operand": {
                            "localId": "565",
                            "type": "In",
                            "operand": [
                              {
                                "localId": "561",
                                "type": "ToInteger",
                                "operand": {
                                  "localId": "560",
                                  "path": "code",
                                  "type": "Property",
                                  "source": {
                                    "localId": "559",
                                    "name": "ingredientCode",
                                    "type": "OperandRef"
                                  }
                                }
                              },
                              {
                                "localId": "564",
                                "type": "List",
                                "element": [
                                  {
                                    "localId": "562",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "1819",
                                    "type": "Literal"
                                  },
                                  {
                                    "localId": "563",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "4337",
                                    "type": "Literal"
                                  }
                                ]
                              }
                            ]
                          }
                        },
                        "then": {
                          "localId": "582",
                          "type": "Concatenate",
                          "operand": [
                            {
                              "localId": "579",
                              "type": "Concatenate",
                              "operand": [
                                {
                                  "localId": "577",
                                  "type": "Concatenate",
                                  "operand": [
                                    {
                                      "localId": "574",
                                      "type": "Concatenate",
                                      "operand": [
                                        {
                                          "localId": "572",
                                          "type": "Concatenate",
                                          "operand": [
                                            {
                                              "localId": "568",
                                              "type": "Concatenate",
                                              "operand": [
                                                {
                                                  "localId": "566",
                                                  "name": "ingredientName",
                                                  "type": "OperandRef"
                                                },
                                                {
                                                  "localId": "567",
                                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                                  "value": " patch: ",
                                                  "type": "Literal"
                                                }
                                              ]
                                            },
                                            {
                                              "localId": "571",
                                              "type": "ToString",
                                              "operand": {
                                                "localId": "570",
                                                "path": "value",
                                                "type": "Property",
                                                "source": {
                                                  "localId": "569",
                                                  "name": "doseQuantity",
                                                  "type": "OperandRef"
                                                }
                                              }
                                            }
                                          ]
                                        },
                                        {
                                          "localId": "573",
                                          "valueType": "{urn:hl7-org:elm-types:r1}String",
                                          "value": " * ",
                                          "type": "Literal"
                                        }
                                      ]
                                    },
                                    {
                                      "localId": "576",
                                      "type": "ToString",
                                      "operand": {
                                        "localId": "575",
                                        "name": "strength",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                },
                                {
                                  "localId": "578",
                                  "valueType": "{urn:hl7-org:elm-types:r1}String",
                                  "value": " = ",
                                  "type": "Literal"
                                }
                              ]
                            },
                            {
                              "localId": "581",
                              "type": "ToString",
                              "operand": {
                                "localId": "580",
                                "name": "dailyDose",
                                "type": "OperandRef"
                              }
                            }
                          ]
                        },
                        "else": {
                          "asType": "{urn:hl7-org:elm-types:r1}String",
                          "type": "As",
                          "operand": {
                            "localId": "583",
                            "type": "Null"
                          }
                        }
                      }
                    },
                    {
                      "localId": "612",
                      "when": {
                        "localId": "591",
                        "type": "In",
                        "operand": [
                          {
                            "localId": "587",
                            "path": "unit",
                            "type": "Property",
                            "source": {
                              "localId": "586",
                              "name": "doseQuantity",
                              "type": "OperandRef"
                            }
                          },
                          {
                            "localId": "590",
                            "type": "List",
                            "element": [
                              {
                                "localId": "588",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mg",
                                "type": "Literal"
                              },
                              {
                                "localId": "589",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": "mcg",
                                "type": "Literal"
                              }
                            ]
                          }
                        ]
                      },
                      "then": {
                        "localId": "611",
                        "type": "Concatenate",
                        "operand": [
                          {
                            "localId": "608",
                            "type": "Concatenate",
                            "operand": [
                              {
                                "localId": "606",
                                "type": "Concatenate",
                                "operand": [
                                  {
                                    "localId": "603",
                                    "type": "Concatenate",
                                    "operand": [
                                      {
                                        "localId": "601",
                                        "type": "Concatenate",
                                        "operand": [
                                          {
                                            "localId": "598",
                                            "type": "Concatenate",
                                            "operand": [
                                              {
                                                "localId": "596",
                                                "type": "Concatenate",
                                                "operand": [
                                                  {
                                                    "localId": "594",
                                                    "type": "Concatenate",
                                                    "operand": [
                                                      {
                                                        "localId": "592",
                                                        "name": "ingredientName",
                                                        "type": "OperandRef"
                                                      },
                                                      {
                                                        "localId": "593",
                                                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                                                        "value": " ",
                                                        "type": "Literal"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "localId": "595",
                                                    "name": "doseFormName",
                                                    "type": "OperandRef"
                                                  }
                                                ]
                                              },
                                              {
                                                "localId": "597",
                                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                                "value": ": ",
                                                "type": "Literal"
                                              }
                                            ]
                                          },
                                          {
                                            "localId": "600",
                                            "type": "ToString",
                                            "operand": {
                                              "localId": "599",
                                              "name": "dosesPerDay",
                                              "type": "OperandRef"
                                            }
                                          }
                                        ]
                                      },
                                      {
                                        "localId": "602",
                                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                                        "value": "/d * ",
                                        "type": "Literal"
                                      }
                                    ]
                                  },
                                  {
                                    "localId": "605",
                                    "type": "ToString",
                                    "operand": {
                                      "localId": "604",
                                      "name": "doseQuantity",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              },
                              {
                                "localId": "607",
                                "valueType": "{urn:hl7-org:elm-types:r1}String",
                                "value": " = ",
                                "type": "Literal"
                              }
                            ]
                          },
                          {
                            "localId": "610",
                            "type": "ToString",
                            "operand": {
                              "localId": "609",
                              "name": "dailyDose",
                              "type": "OperandRef"
                            }
                          }
                        ]
                      }
                    }
                  ],
                  "else": {
                    "localId": "637",
                    "type": "Concatenate",
                    "operand": [
                      {
                        "localId": "634",
                        "type": "Concatenate",
                        "operand": [
                          {
                            "localId": "632",
                            "type": "Concatenate",
                            "operand": [
                              {
                                "localId": "629",
                                "type": "Concatenate",
                                "operand": [
                                  {
                                    "localId": "627",
                                    "type": "Concatenate",
                                    "operand": [
                                      {
                                        "localId": "624",
                                        "type": "Concatenate",
                                        "operand": [
                                          {
                                            "localId": "622",
                                            "type": "Concatenate",
                                            "operand": [
                                              {
                                                "localId": "619",
                                                "type": "Concatenate",
                                                "operand": [
                                                  {
                                                    "localId": "617",
                                                    "type": "Concatenate",
                                                    "operand": [
                                                      {
                                                        "localId": "615",
                                                        "type": "Concatenate",
                                                        "operand": [
                                                          {
                                                            "localId": "613",
                                                            "name": "ingredientName",
                                                            "type": "OperandRef"
                                                          },
                                                          {
                                                            "localId": "614",
                                                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                                                            "value": " ",
                                                            "type": "Literal"
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "localId": "616",
                                                        "name": "doseFormName",
                                                        "type": "OperandRef"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "localId": "618",
                                                    "valueType": "{urn:hl7-org:elm-types:r1}String",
                                                    "value": ": ",
                                                    "type": "Literal"
                                                  }
                                                ]
                                              },
                                              {
                                                "localId": "621",
                                                "type": "ToString",
                                                "operand": {
                                                  "localId": "620",
                                                  "name": "dosesPerDay",
                                                  "type": "OperandRef"
                                                }
                                              }
                                            ]
                                          },
                                          {
                                            "localId": "623",
                                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                                            "value": "/d * ",
                                            "type": "Literal"
                                          }
                                        ]
                                      },
                                      {
                                        "localId": "626",
                                        "type": "ToString",
                                        "operand": {
                                          "localId": "625",
                                          "name": "doseQuantity",
                                          "type": "OperandRef"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "localId": "628",
                                    "valueType": "{urn:hl7-org:elm-types:r1}String",
                                    "value": " * ",
                                    "type": "Literal"
                                  }
                                ]
                              },
                              {
                                "localId": "631",
                                "type": "ToString",
                                "operand": {
                                  "localId": "630",
                                  "name": "strength",
                                  "type": "OperandRef"
                                }
                              }
                            ]
                          },
                          {
                            "localId": "633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": " = ",
                            "type": "Literal"
                          }
                        ]
                      },
                      {
                        "localId": "636",
                        "type": "ToString",
                        "operand": {
                          "localId": "635",
                          "name": "dailyDose",
                          "type": "OperandRef"
                        }
                      }
                    ]
                  }
                },
                "operand": [
                  {
                    "name": "ingredientCode",
                    "operandTypeSpecifier": {
                      "localId": "549",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "ingredientName",
                    "operandTypeSpecifier": {
                      "localId": "550",
                      "name": "{urn:hl7-org:elm-types:r1}String",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "strength",
                    "operandTypeSpecifier": {
                      "localId": "551",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseFormCode",
                    "operandTypeSpecifier": {
                      "localId": "552",
                      "name": "{urn:hl7-org:elm-types:r1}Code",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseFormName",
                    "operandTypeSpecifier": {
                      "localId": "553",
                      "name": "{urn:hl7-org:elm-types:r1}String",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "doseQuantity",
                    "operandTypeSpecifier": {
                      "localId": "554",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "dosesPerDay",
                    "operandTypeSpecifier": {
                      "localId": "555",
                      "name": "{urn:hl7-org:elm-types:r1}Decimal",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "dailyDose",
                    "operandTypeSpecifier": {
                      "localId": "556",
                      "name": "{urn:hl7-org:elm-types:r1}Quantity",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "675",
                "name": "CalculateMorphineMilligramEquivalents",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "675",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalculateMorphineMilligramEquivalents\"",
                            "(",
                            "medications",
                            " "
                          ]
                        },
                        {
                          "r": "201",
                          "s": [
                            {
                              "value": [
                                "List<"
                              ]
                            },
                            {
                              "r": "200",
                              "s": [
                                {
                                  "value": [
                                    "Tuple {\r\n\t"
                                  ]
                                },
                                {
                                  "r": "195",
                                  "s": [
                                    {
                                      "value": [
                                        "rxNormCode",
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "194",
                                      "s": [
                                        {
                                          "value": [
                                            "Code"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t"
                                  ]
                                },
                                {
                                  "r": "197",
                                  "s": [
                                    {
                                      "value": [
                                        "doseQuantity",
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "196",
                                      "s": [
                                        {
                                          "value": [
                                            "Quantity"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t"
                                  ]
                                },
                                {
                                  "r": "199",
                                  "s": [
                                    {
                                      "value": [
                                        "dosesPerDay",
                                        " "
                                      ]
                                    },
                                    {
                                      "r": "198",
                                      "s": [
                                        {
                                          "value": [
                                            "Decimal"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t/* This function returns the MME dosage using values passed from the GetIngredients, EnsureMicrogramQuantity, GetMedicationDailyDose, GetMedDailyDoseDescription, GetConversionFactor functions*/\r\n\t"
                          ]
                        },
                        {
                          "r": "674",
                          "s": [
                            {
                              "r": "674",
                              "s": [
                                {
                                  "value": [
                                    "Flatten",
                                    "("
                                  ]
                                },
                                {
                                  "r": "673",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "203",
                                          "s": [
                                            {
                                              "r": "202",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "medications"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "Med"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "s": [
                                        {
                                          "value": [
                                            "let "
                                          ]
                                        },
                                        {
                                          "r": "207",
                                          "s": [
                                            {
                                              "value": [
                                                "Ingredients",
                                                ": "
                                              ]
                                            },
                                            {
                                              "r": "206",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"GetIngredients\"",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "205",
                                                  "s": [
                                                    {
                                                      "r": "204",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Med"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "205",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "rxNormCode"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "672",
                                      "s": [
                                        {
                                          "value": [
                                            "return "
                                          ]
                                        },
                                        {
                                          "r": "671",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "209",
                                                  "s": [
                                                    {
                                                      "r": "208",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "Ingredients"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "Drug"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "let "
                                                  ]
                                                },
                                                {
                                                  "r": "213",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "adjustedDoseQuantity",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "212",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"EnsureMicrogramQuantity\"",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "211",
                                                          "s": [
                                                            {
                                                              "r": "210",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Med"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "211",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseQuantity"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ",\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "313",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "dailyDose",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "312",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"GetMedicationDailyDose\"",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "215",
                                                          "s": [
                                                            {
                                                              "r": "214",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "215",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "217",
                                                          "s": [
                                                            {
                                                              "r": "216",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "217",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "strength"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "219",
                                                          "s": [
                                                            {
                                                              "r": "218",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "219",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "220",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "adjustedDoseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "222",
                                                          "s": [
                                                            {
                                                              "r": "221",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Med"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "222",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "dosesPerDay"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ",\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "534",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "factor",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "533",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"GetConversionFactor\"",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "315",
                                                          "s": [
                                                            {
                                                              "r": "314",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "315",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "316",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "318",
                                                          "s": [
                                                            {
                                                              "r": "317",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "318",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ",\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "641",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "dailyDoseDescription",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "640",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"GetMedDailyDoseDescription\"",
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "536",
                                                          "s": [
                                                            {
                                                              "r": "535",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "536",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "538",
                                                          "s": [
                                                            {
                                                              "r": "537",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "538",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientName"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "540",
                                                          "s": [
                                                            {
                                                              "r": "539",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "540",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "strength"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "542",
                                                          "s": [
                                                            {
                                                              "r": "541",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "542",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "544",
                                                          "s": [
                                                            {
                                                              "r": "543",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "544",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormName"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "545",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "adjustedDoseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "547",
                                                          "s": [
                                                            {
                                                              "r": "546",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Med"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "547",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "dosesPerDay"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "r": "548",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ",\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "651",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "MME",
                                                        ": "
                                                      ]
                                                    },
                                                    {
                                                      "r": "650",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Quantity",
                                                            " { "
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "value",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "r": "645",
                                                              "s": [
                                                                {
                                                                  "r": "643",
                                                                  "s": [
                                                                    {
                                                                      "r": "642",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "dailyDose"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "643",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "value"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " * "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "644",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "factor"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ", "
                                                          ]
                                                        },
                                                        {
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "unit",
                                                                ": "
                                                              ]
                                                            },
                                                            {
                                                              "r": "649",
                                                              "s": [
                                                                {
                                                                  "r": "647",
                                                                  "s": [
                                                                    {
                                                                      "r": "646",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "dailyDose"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "647",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "unit"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " + "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "648",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "'/d'"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " }"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "670",
                                              "s": [
                                                {
                                                  "value": [
                                                    "return "
                                                  ]
                                                },
                                                {
                                                  "r": "669",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "{\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "rxNormCode",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "653",
                                                          "s": [
                                                            {
                                                              "r": "652",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Med"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "653",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "rxNormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseFormCode",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "655",
                                                          "s": [
                                                            {
                                                              "r": "654",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "655",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "doseFormCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "doseQuantity",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "656",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "adjustedDoseQuantity"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "dosesPerDay",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "658",
                                                          "s": [
                                                            {
                                                              "r": "657",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Med"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "658",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "dosesPerDay"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ingredientCode",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "660",
                                                          "s": [
                                                            {
                                                              "r": "659",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "660",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientCode"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "ingredientName",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "662",
                                                          "s": [
                                                            {
                                                              "r": "661",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "662",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "ingredientName"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "strength",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "664",
                                                          "s": [
                                                            {
                                                              "r": "663",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Drug"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                "."
                                                              ]
                                                            },
                                                            {
                                                              "r": "664",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "strength"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "dailyDose",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "665",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDose"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "dailyDoseDescription",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "666",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "dailyDoseDescription"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "conversionFactor",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "667",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "factor"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        ",\r\n\t\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "MME",
                                                            ": "
                                                          ]
                                                        },
                                                        {
                                                          "r": "668",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "MME"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\t}"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "674",
                  "type": "Flatten",
                  "operand": {
                    "localId": "673",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "203",
                        "alias": "Med",
                        "expression": {
                          "localId": "202",
                          "name": "medications",
                          "type": "OperandRef"
                        }
                      }
                    ],
                    "let": [
                      {
                        "localId": "207",
                        "identifier": "Ingredients",
                        "expression": {
                          "localId": "206",
                          "name": "GetIngredients",
                          "type": "FunctionRef",
                          "operand": [
                            {
                              "localId": "205",
                              "path": "rxNormCode",
                              "scope": "Med",
                              "type": "Property"
                            }
                          ]
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "672",
                      "expression": {
                        "localId": "671",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "209",
                            "alias": "Drug",
                            "expression": {
                              "localId": "208",
                              "name": "Ingredients",
                              "type": "QueryLetRef"
                            }
                          }
                        ],
                        "let": [
                          {
                            "localId": "213",
                            "identifier": "adjustedDoseQuantity",
                            "expression": {
                              "localId": "212",
                              "name": "EnsureMicrogramQuantity",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "211",
                                  "path": "doseQuantity",
                                  "scope": "Med",
                                  "type": "Property"
                                }
                              ]
                            }
                          },
                          {
                            "localId": "313",
                            "identifier": "dailyDose",
                            "expression": {
                              "localId": "312",
                              "name": "GetMedicationDailyDose",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "215",
                                  "path": "ingredientCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "217",
                                  "path": "strength",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "219",
                                  "path": "doseFormCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "220",
                                  "name": "adjustedDoseQuantity",
                                  "type": "QueryLetRef"
                                },
                                {
                                  "localId": "222",
                                  "path": "dosesPerDay",
                                  "scope": "Med",
                                  "type": "Property"
                                }
                              ]
                            }
                          },
                          {
                            "localId": "534",
                            "identifier": "factor",
                            "expression": {
                              "localId": "533",
                              "name": "GetConversionFactor",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "315",
                                  "path": "ingredientCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "316",
                                  "name": "dailyDose",
                                  "type": "QueryLetRef"
                                },
                                {
                                  "localId": "318",
                                  "path": "doseFormCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                }
                              ]
                            }
                          },
                          {
                            "localId": "641",
                            "identifier": "dailyDoseDescription",
                            "expression": {
                              "localId": "640",
                              "name": "GetMedDailyDoseDescription",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "536",
                                  "path": "ingredientCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "538",
                                  "path": "ingredientName",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "540",
                                  "path": "strength",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "542",
                                  "path": "doseFormCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "544",
                                  "path": "doseFormName",
                                  "scope": "Drug",
                                  "type": "Property"
                                },
                                {
                                  "localId": "545",
                                  "name": "adjustedDoseQuantity",
                                  "type": "QueryLetRef"
                                },
                                {
                                  "localId": "547",
                                  "path": "dosesPerDay",
                                  "scope": "Med",
                                  "type": "Property"
                                },
                                {
                                  "localId": "548",
                                  "name": "dailyDose",
                                  "type": "QueryLetRef"
                                }
                              ]
                            }
                          },
                          {
                            "localId": "651",
                            "identifier": "MME",
                            "expression": {
                              "localId": "650",
                              "classType": "{urn:hl7-org:elm-types:r1}Quantity",
                              "type": "Instance",
                              "element": [
                                {
                                  "name": "value",
                                  "value": {
                                    "localId": "645",
                                    "type": "Multiply",
                                    "operand": [
                                      {
                                        "localId": "643",
                                        "path": "value",
                                        "type": "Property",
                                        "source": {
                                          "localId": "642",
                                          "name": "dailyDose",
                                          "type": "QueryLetRef"
                                        }
                                      },
                                      {
                                        "localId": "644",
                                        "name": "factor",
                                        "type": "QueryLetRef"
                                      }
                                    ]
                                  }
                                },
                                {
                                  "name": "unit",
                                  "value": {
                                    "localId": "649",
                                    "type": "Concatenate",
                                    "operand": [
                                      {
                                        "localId": "647",
                                        "path": "unit",
                                        "type": "Property",
                                        "source": {
                                          "localId": "646",
                                          "name": "dailyDose",
                                          "type": "QueryLetRef"
                                        }
                                      },
                                      {
                                        "localId": "648",
                                        "valueType": "{urn:hl7-org:elm-types:r1}String",
                                        "value": "/d",
                                        "type": "Literal"
                                      }
                                    ]
                                  }
                                }
                              ]
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "return": {
                          "localId": "670",
                          "expression": {
                            "localId": "669",
                            "type": "Tuple",
                            "element": [
                              {
                                "name": "rxNormCode",
                                "value": {
                                  "localId": "653",
                                  "path": "rxNormCode",
                                  "scope": "Med",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "doseFormCode",
                                "value": {
                                  "localId": "655",
                                  "path": "doseFormCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "doseQuantity",
                                "value": {
                                  "localId": "656",
                                  "name": "adjustedDoseQuantity",
                                  "type": "QueryLetRef"
                                }
                              },
                              {
                                "name": "dosesPerDay",
                                "value": {
                                  "localId": "658",
                                  "path": "dosesPerDay",
                                  "scope": "Med",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "ingredientCode",
                                "value": {
                                  "localId": "660",
                                  "path": "ingredientCode",
                                  "scope": "Drug",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "ingredientName",
                                "value": {
                                  "localId": "662",
                                  "path": "ingredientName",
                                  "scope": "Drug",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "strength",
                                "value": {
                                  "localId": "664",
                                  "path": "strength",
                                  "scope": "Drug",
                                  "type": "Property"
                                }
                              },
                              {
                                "name": "dailyDose",
                                "value": {
                                  "localId": "665",
                                  "name": "dailyDose",
                                  "type": "QueryLetRef"
                                }
                              },
                              {
                                "name": "dailyDoseDescription",
                                "value": {
                                  "localId": "666",
                                  "name": "dailyDoseDescription",
                                  "type": "QueryLetRef"
                                }
                              },
                              {
                                "name": "conversionFactor",
                                "value": {
                                  "localId": "667",
                                  "name": "factor",
                                  "type": "QueryLetRef"
                                }
                              },
                              {
                                "name": "MME",
                                "value": {
                                  "localId": "668",
                                  "name": "MME",
                                  "type": "QueryLetRef"
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "medications",
                    "operandTypeSpecifier": {
                      "localId": "201",
                      "type": "ListTypeSpecifier",
                      "elementType": {
                        "localId": "200",
                        "type": "TupleTypeSpecifier",
                        "element": [
                          {
                            "localId": "195",
                            "name": "rxNormCode",
                            "elementType": {
                              "localId": "194",
                              "name": "{urn:hl7-org:elm-types:r1}Code",
                              "type": "NamedTypeSpecifier"
                            }
                          },
                          {
                            "localId": "197",
                            "name": "doseQuantity",
                            "elementType": {
                              "localId": "196",
                              "name": "{urn:hl7-org:elm-types:r1}Quantity",
                              "type": "NamedTypeSpecifier"
                            }
                          },
                          {
                            "localId": "199",
                            "name": "dosesPerDay",
                            "elementType": {
                              "localId": "198",
                              "name": "{urn:hl7-org:elm-types:r1}Decimal",
                              "type": "NamedTypeSpecifier"
                            }
                          }
                        ]
                      }
                    }
                  }
                ]
              }
            ]
          }
        }
      },
      "elm_annotations": {
        "statements": [
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"ToDaily\"(period "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "System.Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "12"
                  },
                  {
                    "children": [
                      {
                        "text": ", frequency "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Integer"
                          }
                        ]
                      }
                    ],
                    "ref_id": "13"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function calculates the daily dosage of medication using the Period (Years, Months, Weeks, Days, Hours, Minutes or Seconds) to determine frequency */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "period"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "14"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "unit"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "15"
                              }
                            ],
                            "ref_id": "15"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'h'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "16"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "frequency"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "17"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " * "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "24.0 / "
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "18"
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "period"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "19"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "value"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "20"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "20"
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "21"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Divide",
                                    "ref_id": "21"
                                  }
                                ],
                                "ref_id": "22"
                              }
                            ],
                            "ref_id": "23"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'min'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "24"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "25"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "24.0 / "
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "26"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "27"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "28"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "28"
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "29"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "29"
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "30"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " * 60"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "32"
                              }
                            ],
                            "ref_id": "33"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'s'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "34"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "frequency"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "35"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " * "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "( "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "24.0 / "
                                                      }
                                                    ],
                                                    "node_type": "Literal",
                                                    "ref_id": "36"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "period"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "37"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "value"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "38"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "38"
                                                  }
                                                ],
                                                "node_type": "Divide",
                                                "ref_id": "39"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " )"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "39"
                                          }
                                        ],
                                        "node_type": "Multiply",
                                        "ref_id": "40"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * 60"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "42"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " * 60"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "44"
                              }
                            ],
                            "ref_id": "45"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'d'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "46"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "47"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "24.0 / "
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "48"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "49"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "50"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "50"
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "51"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "51"
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "52"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " / 24"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "54"
                              }
                            ],
                            "ref_id": "55"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'wk'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "56"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "57"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "24.0 / "
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "58"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "59"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "60"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "60"
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "61"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "61"
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "62"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " / "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "24 * 7"
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "63"
                                          }
                                        ],
                                        "node_type": "Multiply",
                                        "ref_id": "65"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "65"
                                  }
                                ],
                                "ref_id": "66"
                              }
                            ],
                            "ref_id": "67"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'mo'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "68"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "69"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "24.0 / "
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "70"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "71"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "72"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "72"
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "73"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "73"
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "74"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " / "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "24 * 30"
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "75"
                                          }
                                        ],
                                        "node_type": "Multiply",
                                        "ref_id": "77"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "77"
                                  }
                                ],
                                "ref_id": "78"
                              }
                            ],
                            "ref_id": "79"
                          },
                          {
                            "children": [
                              {
                                "text": " /* assuming 30 days in month */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'a'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "80"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "frequency"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "81"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "24.0 / "
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "82"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "83"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "84"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "84"
                                              }
                                            ],
                                            "node_type": "Divide",
                                            "ref_id": "85"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Divide",
                                        "ref_id": "85"
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "86"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " / "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "24 * 365"
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "87"
                                          }
                                        ],
                                        "node_type": "Multiply",
                                        "ref_id": "89"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Multiply",
                                    "ref_id": "89"
                                  }
                                ],
                                "ref_id": "90"
                              }
                            ],
                            "ref_id": "91"
                          },
                          {
                            "children": [
                              {
                                "text": " /* assuming 365 days in year */ &#13;\n    else null &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "93"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "93"
                  }
                ],
                "ref_id": "94"
              }
            ],
            "define_name": "ToDaily"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"ToUnifiedCodeForUnitsOfMeasure\"(unit "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "String"
                          }
                        ]
                      }
                    ],
                    "ref_id": "133"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function converts the dose units to the correct Unified Code for Units Of Measure (UCUM) unit */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "unit"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "134"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "135"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'mg'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "136"
                              }
                            ],
                            "ref_id": "137"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "138"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'mg/{actuat}'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "139"
                              }
                            ],
                            "ref_id": "140"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "141"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'mg/h'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "142"
                              }
                            ],
                            "ref_id": "143"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "144"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'mg/mL'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "145"
                              }
                            ],
                            "ref_id": "146"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n    else "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "'unknown{'"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Literal",
                                    "ref_id": "147"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " + "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "unit"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "148"
                                  }
                                ],
                                "node_type": "Concatenate",
                                "ref_id": "149"
                              },
                              {
                                "children": [
                                  {
                                    "text": " + "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'}'"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Literal",
                                "ref_id": "150"
                              }
                            ],
                            "ref_id": "151"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "152"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "152"
                  }
                ],
                "ref_id": "153"
              }
            ],
            "define_name": "ToUnifiedCodeForUnitsOfMeasure"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"EnsureMicrogramQuantity\"(strength "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "156"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function checks the Drug strength, and if it is less than 0.1 and the strength unit (mg) is zero, then the Quantity is set to the strength value x 1000 and unit of mcg */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "if "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "strength"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "157"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "value"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "158"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "158"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " < 0.1"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Less",
                                "ref_id": "160"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n    and "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "PositionOf("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "'mg'"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "161"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "162"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "163"
                                              }
                                            ],
                                            "ref_id": "163"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "PositionOf",
                                        "ref_id": "164"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "= 0"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Equal",
                                    "ref_id": "166"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " )"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Equal",
                                "ref_id": "166"
                              }
                            ],
                            "node_type": "And",
                            "ref_id": "167"
                          },
                          {
                            "children": [
                              {
                                "text": " then "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Quantity { "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "value: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "strength"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "168"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "value"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "169"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "169"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * 1000"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "171"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ", "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "unit: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mcg'"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Literal",
                                        "ref_id": "172"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " + "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Substring("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "173"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "174"
                                              }
                                            ],
                                            "ref_id": "174"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", 2)"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Substring",
                                        "ref_id": "176"
                                      }
                                    ],
                                    "ref_id": "177"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "}"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "178"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n    else "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "179"
                          }
                        ],
                        "node_type": "If",
                        "ref_id": "180"
                      }
                    ],
                    "node_type": "If",
                    "ref_id": "180"
                  }
                ],
                "ref_id": "181"
              }
            ],
            "define_name": "EnsureMicrogramQuantity"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"GetIngredients\"(rxNormCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "95"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function matches the Drug code to the Opioid Data Library Drug Code, then returns the Drug Code, Drug Name, Dose Form, Strength and Unit*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "OpioidDataLibrary.\"DrugIngredients\""
                                              }
                                            ]
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ExpressionRef",
                                    "ref_id": "96"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " DrugIngredientElement"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "97"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "where "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "DrugIngredientElement"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "98"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "drugCode"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "99"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "99"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " = "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "ToInteger("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "rxNormCode"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "100"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "code"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "101"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "101"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ToInteger",
                                    "ref_id": "102"
                                  }
                                ],
                                "ref_id": "103"
                              }
                            ],
                            "ref_id": "103"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "return "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "{&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "rxNormCode: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Code { "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "code: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToString("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "DrugIngredientElement"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "104"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "drugCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "105"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "105"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "106"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "system: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'2.16.840.1.113883.6.88'"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "107"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "display: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "DrugIngredientElement"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "108"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "drugName"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "109"
                                                  }
                                                ],
                                                "ref_id": "109"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " }"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "110"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "doseFormCode: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Code { "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "code: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToString("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "DrugIngredientElement"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "111"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "112"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "112"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "113"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "system: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'2.16.840.1.113883.6.88'"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "114"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "display: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "DrugIngredientElement"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "115"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "doseFormName"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "116"
                                                  }
                                                ],
                                                "ref_id": "116"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " }"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "117"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "doseFormName: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "DrugIngredientElement"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "118"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "doseFormName"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "119"
                                          }
                                        ],
                                        "ref_id": "119"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "ingredientCode: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Code { "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "code: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToString("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "DrugIngredientElement"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "120"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "121"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "121"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "122"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "system: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'2.16.840.1.113883.6.88'"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "123"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "display: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "DrugIngredientElement"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "124"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "ingredientName"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "125"
                                                  }
                                                ],
                                                "ref_id": "125"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " }"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "126"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "ingredientName: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "DrugIngredientElement"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "127"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "ingredientName"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "128"
                                          }
                                        ],
                                        "ref_id": "128"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ",&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "strength: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "EnsureMicrogramQuantity("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "Quantity { "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "value: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "DrugIngredientElement"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "129"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "strengthValue"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "130"
                                                      }
                                                    ],
                                                    "ref_id": "130"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ", "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "ToUnifiedCodeForUnitsOfMeasure("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "DrugIngredientElement"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "131"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "strengthUnit"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "132"
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "132"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "154"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "}"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Instance",
                                            "ref_id": "155"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "182"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    }"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Tuple",
                                "ref_id": "183"
                              }
                            ],
                            "ref_id": "184"
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "185"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "185"
                  }
                ],
                "ref_id": "186"
              }
            ],
            "define_name": "GetIngredients"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"IsTransdermalPatch\"(doseFormCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "187"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /*This function examines Drug Form Code, and if given dose form is a patch (transdermal), then returns 'true' for any functions using that value*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ToInteger("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "doseFormCode"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "188"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "code"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "189"
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "189"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToInteger",
                            "ref_id": "190"
                          },
                          {
                            "children": [
                              {
                                "text": "= 316987"
                              }
                            ]
                          }
                        ],
                        "node_type": "Equal",
                        "ref_id": "192"
                      }
                    ],
                    "node_type": "Equal",
                    "ref_id": "192"
                  }
                ],
                "ref_id": "193"
              }
            ],
            "define_name": "IsTransdermalPatch"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"GetMedicationDailyDose\"(ingredientCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "223"
                  },
                  {
                    "children": [
                      {
                        "text": ", strength "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "224"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseFormCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "225"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseQuantity "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "226"
                  },
                  {
                    "children": [
                      {
                        "text": ", dosesPerDay "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Decimal"
                          }
                        ]
                      }
                    ],
                    "ref_id": "227"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Quantity that will be used by the Calculate MME function*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case&#13;\n    /* if patch --> daily dose = dose value (e.g, number patches with doseQuantity unit = \"patch\") * per-hour strength */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"IsTransdermalPatch\"("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "doseFormCode"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "228"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "229"
                              },
                              {
                                "children": [
                                  {
                                    "text": "then&#13;\n        /* buprenorphine or fentanyl patch */ "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "if "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ToInteger("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ingredientCode"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "230"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "code"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "231"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "231"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ToInteger",
                                        "ref_id": "232"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "in "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "{ 1819, 4337 }"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "List",
                                        "ref_id": "235"
                                      }
                                    ],
                                    "node_type": "In",
                                    "ref_id": "236"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " then "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Quantity { "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "value: "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "doseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "237"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "238"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "238"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " * "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "strength"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "239"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "240"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "240"
                                              }
                                            ],
                                            "ref_id": "241"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "unit: "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "242"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "243"
                                              }
                                            ],
                                            "ref_id": "243"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " }"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "244"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " &#13;\n      else null"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "246"
                              }
                            ],
                            "ref_id": "247"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  &#13;\n  &#13;\n      /* if dose unit in actual mass units (mg or mcg -- when it's a single med) --> daily dose = numTimesPerDay * dose */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "doseQuantity"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "248"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "unit"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "249"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "249"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " in "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "{ "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mg'"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "250"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mcg'"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "251"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " }"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "List",
                                    "ref_id": "252"
                                  }
                                ],
                                "ref_id": "253"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Quantity { "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "value: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "dosesPerDay"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "254"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " * "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseQuantity"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "255"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "value"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "256"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "256"
                                          }
                                        ],
                                        "ref_id": "257"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ", "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "unit: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "doseQuantity"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "258"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "unit"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "259"
                                          }
                                        ],
                                        "ref_id": "259"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " }"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "260"
                              }
                            ],
                            "ref_id": "261"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  &#13;\n  &#13;\n      /* if doseQuantity is in actual volume units (mL) --> daily dose = numTimesPerDay * dose * strength */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "doseQuantity"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "262"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "unit"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "263"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "263"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " = "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mL'"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Literal",
                                        "ref_id": "264"
                                      }
                                    ],
                                    "node_type": "Equal",
                                    "ref_id": "265"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      and "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "PositionOf("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'/mL'"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "266"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ", "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "strength"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "267"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "unit"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "268"
                                                  }
                                                ],
                                                "ref_id": "268"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "PositionOf",
                                            "ref_id": "269"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "= "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Length("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "strength"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "270"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "unit"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "271"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "271"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Length",
                                                "ref_id": "272"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "- 3"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Subtract",
                                            "ref_id": "274"
                                          }
                                        ],
                                        "node_type": "Equal",
                                        "ref_id": "275"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Equal",
                                    "ref_id": "275"
                                  }
                                ],
                                "ref_id": "276"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Quantity { "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "value: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "dosesPerDay"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "OperandRef",
                                                "ref_id": "277"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " * "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "doseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "278"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "279"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "279"
                                              }
                                            ],
                                            "node_type": "Multiply",
                                            "ref_id": "280"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " * "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "281"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "value"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "282"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "282"
                                          }
                                        ],
                                        "ref_id": "283"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ", "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "unit: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Substring("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "284"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "285"
                                              }
                                            ],
                                            "ref_id": "285"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", 0, "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "PositionOf("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'/'"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "287"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ", "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "strength"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "288"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "unit"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "289"
                                                  }
                                                ],
                                                "ref_id": "289"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "290"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "291"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "}"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "292"
                              }
                            ],
                            "ref_id": "293"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  &#13;\n  &#13;\n  /* if doseQuantity is not in actual units (e.g., 1 tab, 1 spray -- when it's a combo med with a unit of tablet, or it's mg/actuat) -->  daily dose = numTimesPerDay * dose value * strength value */ &#13;\n    else "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Quantity { "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "value: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "dosesPerDay"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "294"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " * "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseQuantity"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "295"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "value"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "296"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "296"
                                          }
                                        ],
                                        "node_type": "Multiply",
                                        "ref_id": "297"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " * "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "strength"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "298"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "value"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "299"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "299"
                                      }
                                    ],
                                    "ref_id": "300"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": ", "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "unit: "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Substring("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "strength"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "301"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "unit"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "302"
                                          }
                                        ],
                                        "ref_id": "302"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", 0, "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "PositionOf("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "'/'"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "304"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "305"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "unit"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "306"
                                              }
                                            ],
                                            "ref_id": "306"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "307"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "308"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "}"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "309"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "310"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "310"
                  }
                ],
                "ref_id": "311"
              }
            ],
            "define_name": "GetMedicationDailyDose"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"GetConversionFactor\"(ingredientCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "319"
                  },
                  {
                    "children": [
                      {
                        "text": ", dailyDose "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "320"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseFormCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "321"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function specifies the conversion factor (based on the Ingredient Code) to be used by the Calculate MME function */&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ToInteger("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "ingredientCode"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "322"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "."
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "code"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "323"
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "323"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "324"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 161 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "327"
                          },
                          {
                            "children": [
                              {
                                "text": "  /*  Acetaminophen */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1191 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "330"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Aspirin */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1223 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "333"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Atropine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1767 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "336"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Brompheniramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1819 then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( /*  Buprenorphine */ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "case&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToInteger("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "338"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "code"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "339"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "339"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToInteger",
                                                "ref_id": "340"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "= 316987"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "342"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 12.6"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "344"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " /* Transdermal system */ &#13;\n        else 30 /* Tablet or Film (or Film in MCG) */ &#13;\n      end"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "346"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    )"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "346"
                              }
                            ],
                            "ref_id": "347"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1841 then 7"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "350"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Butorphanol */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 1886 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "353"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Caffeine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 2101 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "356"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Carisoprodol */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 2354 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "359"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  chlorcyclizine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 2400 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "362"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Chlorpheniramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 2670 then 0.15"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "365"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Codeine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 3423 then 4"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "368"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Hydromorphone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 3498 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "371"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Diphenhydramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 4337 then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( /*  Fentanyl */ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "case&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToInteger("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "373"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "code"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "374"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "374"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToInteger",
                                                "ref_id": "375"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "in "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "{ 970789, 317007, 316992 }"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "List",
                                                "ref_id": "379"
                                              }
                                            ],
                                            "ref_id": "380"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 0.13"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "382"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " /* Buccal Tablet, Sublingual Tablet, Oral Lozenge */&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToInteger("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "383"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "code"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "384"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "384"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToInteger",
                                                "ref_id": "385"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "= 346163"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "387"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 0.18"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "389"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " /* Buccal Film */&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToInteger("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "390"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "code"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "391"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "391"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToInteger",
                                                "ref_id": "392"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "in "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "{ 126542, 346163 }"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "List",
                                                "ref_id": "395"
                                              }
                                            ],
                                            "ref_id": "396"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 0.16"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "398"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " /* Nasal Spray, Mucosal Spray */&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"IsTransdermalPatch\"("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseFormCode"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "OperandRef",
                                                "ref_id": "399"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "400"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "then 7.2"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "402"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " /* Transdermal system */ &#13;\n        else 1000 &#13;\n      end"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "404"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    )"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "404"
                              }
                            ],
                            "ref_id": "405"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 5032 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "408"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Guaifenesin */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 5489 then 1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "411"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Hydrocodone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 5640 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "414"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Ibuprofen */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 6102 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "417"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Kaolin */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 6378 then 11"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "420"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Levorphanol (NOTE: Given as Levorphanol tartrate in the CDC conversion table) */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 6754 then 0.1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "423"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Meperidine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 6813 then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( /*  Methadone */ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "case&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "425"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "426"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "426"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " between 1 and 20"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "429"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 4"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "431"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "432"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "433"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "433"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " between 21 and 40"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "436"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 8"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "438"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "439"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "440"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "440"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " between 41 and 60"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "443"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 10"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "445"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "when "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "446"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "."
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "447"
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "447"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " >= 61"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "449"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " then 12"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "451"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " &#13;\n        else 1000 &#13;\n      end"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Case",
                                    "ref_id": "453"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n    )"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Case",
                                "ref_id": "453"
                              }
                            ],
                            "ref_id": "454"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7052 then 1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "457"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Morphine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7238 then 1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "460"
                          },
                          {
                            "children": [
                              {
                                "text": " /*Nalbuphine*/&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7242 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "463"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Naloxone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7243 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "466"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Naltrexone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7676 then 1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "469"
                          },
                          {
                            "children": [
                              {
                                "text": " /*Opium*/&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7804 then 1.5"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "472"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Oxycodone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 7814 then 3"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "475"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Oxymorphone */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 8001 then 0.37"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "478"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Pentazocine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 8163 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "481"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Phenylephrine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 8175 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "484"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Phenylpropanolamine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 8745 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "487"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Promethazine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 8896 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "490"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Pseudoephedrine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 9009 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "493"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Pyrilamine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 10689 then 0.1"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "496"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Tramadol */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 10849 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "499"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Triprolidine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 19759 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "502"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  bromodiphenhydramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 19860 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "505"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  butalbital */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 22696 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "508"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  dexbrompheniramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 22697 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "511"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  dexchlorpheniramine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 23088 then 0.25"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "514"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  dihydrocodeine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 27084 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "517"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  homatropine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 35780 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "520"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  ropivacaine */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 237005 then 8"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "523"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  Levomethadyl (NOTE: given as Levomethadyl acetate in the CDC conversion table) */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 636827 then 0"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "526"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  guaiacolsulfonate */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when 787390 then 0.4"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "529"
                          },
                          {
                            "children": [
                              {
                                "text": " /*  tapentadol */ &#13;\n    else 0 &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "531"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "531"
                  }
                ],
                "ref_id": "532"
              }
            ],
            "define_name": "GetConversionFactor"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"GetMedDailyDoseDescription\"(ingredientCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "549"
                  },
                  {
                    "children": [
                      {
                        "text": ", ingredientName "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "String"
                          }
                        ]
                      }
                    ],
                    "ref_id": "550"
                  },
                  {
                    "children": [
                      {
                        "text": ", strength "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "551"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseFormCode "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Code"
                          }
                        ]
                      }
                    ],
                    "ref_id": "552"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseFormName "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "String"
                          }
                        ]
                      }
                    ],
                    "ref_id": "553"
                  },
                  {
                    "children": [
                      {
                        "text": ", doseQuantity "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "554"
                  },
                  {
                    "children": [
                      {
                        "text": ", dosesPerDay "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Decimal"
                          }
                        ]
                      }
                    ],
                    "ref_id": "555"
                  },
                  {
                    "children": [
                      {
                        "text": ", dailyDose "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Quantity"
                          }
                        ]
                      }
                    ],
                    "ref_id": "556"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function uses the Dose Code, Dose Form, Dose Strength and Dose Unit to determine the drug Name that will be used by the Calculate MME function*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case&#13;\n      /* if patch */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "\"IsTransdermalPatch\"("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "doseFormCode"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "557"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "558"
                              },
                              {
                                "children": [
                                  {
                                    "text": "then&#13;\n        /* buprenorphine or fentanyl patch */ "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "if "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ToInteger("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ingredientCode"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "559"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "code"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "560"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "560"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ToInteger",
                                        "ref_id": "561"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "in "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "{ 1819, 4337 }"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "List",
                                        "ref_id": "564"
                                      }
                                    ],
                                    "node_type": "In",
                                    "ref_id": "565"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " then "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "ingredientName"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "566"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " + "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "' patch: '"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Literal",
                                                            "ref_id": "567"
                                                          }
                                                        ],
                                                        "node_type": "Concatenate",
                                                        "ref_id": "568"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " + "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ToString("
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "doseQuantity"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "569"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "value"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "570"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "570"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ")"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "ToString",
                                                        "ref_id": "571"
                                                      }
                                                    ],
                                                    "node_type": "Concatenate",
                                                    "ref_id": "572"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "+ "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "' * '"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Literal",
                                                    "ref_id": "573"
                                                  }
                                                ],
                                                "node_type": "Concatenate",
                                                "ref_id": "574"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " + "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToString("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "strength"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "575"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToString",
                                                "ref_id": "576"
                                              }
                                            ],
                                            "node_type": "Concatenate",
                                            "ref_id": "577"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "+ "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "' = '"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "578"
                                          }
                                        ],
                                        "node_type": "Concatenate",
                                        "ref_id": "579"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " + "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ToString("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "dailyDose"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "580"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ToString",
                                        "ref_id": "581"
                                      }
                                    ],
                                    "ref_id": "582"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      else null"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "584"
                              }
                            ],
                            "ref_id": "585"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  &#13;\n  &#13;\n      /* if dose unit in actual mass units (mg or mcg -- when it's a single med) */&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "doseQuantity"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "586"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "unit"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "587"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "587"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " in "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "{ "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mg'"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "588"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "'mcg'"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "589"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " }"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "List",
                                    "ref_id": "590"
                                  }
                                ],
                                "ref_id": "591"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "ingredientName"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "OperandRef",
                                                                "ref_id": "592"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": " + "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "' '"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Literal",
                                                                "ref_id": "593"
                                                              }
                                                            ],
                                                            "node_type": "Concatenate",
                                                            "ref_id": "594"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " + "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "doseFormName"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "595"
                                                          }
                                                        ],
                                                        "node_type": "Concatenate",
                                                        "ref_id": "596"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " + "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "': '"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Literal",
                                                        "ref_id": "597"
                                                      }
                                                    ],
                                                    "node_type": "Concatenate",
                                                    "ref_id": "598"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " + "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "ToString("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "dosesPerDay"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "599"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "ToString",
                                                    "ref_id": "600"
                                                  }
                                                ],
                                                "node_type": "Concatenate",
                                                "ref_id": "601"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "+ "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "'/d * '"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Literal",
                                                "ref_id": "602"
                                              }
                                            ],
                                            "node_type": "Concatenate",
                                            "ref_id": "603"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " + "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "ToString("
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseQuantity"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "OperandRef",
                                                "ref_id": "604"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ")"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "ToString",
                                            "ref_id": "605"
                                          }
                                        ],
                                        "node_type": "Concatenate",
                                        "ref_id": "606"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "+ "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "' = '"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Literal",
                                        "ref_id": "607"
                                      }
                                    ],
                                    "node_type": "Concatenate",
                                    "ref_id": "608"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " + "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "ToString("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "dailyDose"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "609"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ToString",
                                    "ref_id": "610"
                                  }
                                ],
                                "ref_id": "611"
                              }
                            ],
                            "ref_id": "612"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  &#13;\n  &#13;\n      /* if doseQuantity in actual volume units (mL) or not in actual units (e.g. 1 tab, 1 spray) */&#13;\n    else "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "ingredientName"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "OperandRef",
                                                                    "ref_id": "613"
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": " + "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "' '"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "Literal",
                                                                    "ref_id": "614"
                                                                  }
                                                                ],
                                                                "node_type": "Concatenate",
                                                                "ref_id": "615"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": " + "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "doseFormName"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "OperandRef",
                                                                "ref_id": "616"
                                                              }
                                                            ],
                                                            "node_type": "Concatenate",
                                                            "ref_id": "617"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " + "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "': '"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Literal",
                                                            "ref_id": "618"
                                                          }
                                                        ],
                                                        "node_type": "Concatenate",
                                                        "ref_id": "619"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " + "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ToString("
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "dosesPerDay"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "620"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ")"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "ToString",
                                                        "ref_id": "621"
                                                      }
                                                    ],
                                                    "node_type": "Concatenate",
                                                    "ref_id": "622"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "+ "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "'/d * '"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "Literal",
                                                    "ref_id": "623"
                                                  }
                                                ],
                                                "node_type": "Concatenate",
                                                "ref_id": "624"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " + "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ToString("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "doseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "625"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "ToString",
                                                "ref_id": "626"
                                              }
                                            ],
                                            "node_type": "Concatenate",
                                            "ref_id": "627"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "+ "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "' * '"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Literal",
                                            "ref_id": "628"
                                          }
                                        ],
                                        "node_type": "Concatenate",
                                        "ref_id": "629"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " + "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "ToString("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "strength"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "630"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "ToString",
                                        "ref_id": "631"
                                      }
                                    ],
                                    "node_type": "Concatenate",
                                    "ref_id": "632"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "+ "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "' = '"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Literal",
                                    "ref_id": "633"
                                  }
                                ],
                                "node_type": "Concatenate",
                                "ref_id": "634"
                              },
                              {
                                "children": [
                                  {
                                    "text": " + "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "ToString("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "dailyDose"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "635"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "ToString",
                                "ref_id": "636"
                              }
                            ],
                            "ref_id": "637"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "638"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "638"
                  }
                ],
                "ref_id": "639"
              }
            ],
            "define_name": "GetMedDailyDoseDescription"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalculateMorphineMilligramEquivalents\"(medications "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "List<"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Tuple {&#13;\n  "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "rxNormCode "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Code"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "194"
                              }
                            ],
                            "ref_id": "195"
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n  "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseQuantity "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Quantity"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "196"
                              }
                            ],
                            "ref_id": "197"
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n  "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "dosesPerDay "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Decimal"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "198"
                              }
                            ],
                            "ref_id": "199"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n}"
                              }
                            ]
                          }
                        ],
                        "ref_id": "200"
                      },
                      {
                        "children": [
                          {
                            "text": ">"
                          }
                        ]
                      }
                    ],
                    "ref_id": "201"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  /* This function returns the MME dosage using values passed from the GetIngredients, EnsureMicrogramQuantity, GetMedicationDailyDose, GetMedDailyDoseDescription, GetConversionFactor functions*/&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "Flatten("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "medications"
                                                  }
                                                ]
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "202"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " Med"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "203"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "let "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Ingredients: "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"GetIngredients\"("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Med"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "204"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "rxNormCode"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "205"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "205"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "FunctionRef",
                                        "ref_id": "206"
                                      }
                                    ],
                                    "ref_id": "207"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "return "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "Ingredients"
                                                          }
                                                        ]
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "QueryLetRef",
                                                "ref_id": "208"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " Drug"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "209"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "let "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "adjustedDoseQuantity: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"EnsureMicrogramQuantity\"("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Med"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "210"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseQuantity"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "211"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "211"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "212"
                                              }
                                            ],
                                            "ref_id": "213"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ",&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "dailyDose: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"GetMedicationDailyDose\"("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "214"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "215"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "215"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "216"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "strength"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "217"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "217"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "218"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "219"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "219"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "adjustedDoseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "220"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Med"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "221"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "dosesPerDay"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "222"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "222"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "312"
                                              }
                                            ],
                                            "ref_id": "313"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ",&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "factor: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"GetConversionFactor\"("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "314"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "315"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "315"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "316"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "317"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "318"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "318"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "533"
                                              }
                                            ],
                                            "ref_id": "534"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ",&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "dailyDoseDescription: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"GetMedDailyDoseDescription\"("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "535"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "536"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "536"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "537"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientName"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "538"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "538"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "539"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "strength"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "540"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "540"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "541"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "542"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "542"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "543"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormName"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "544"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "544"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "adjustedDoseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "545"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Med"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "546"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "dosesPerDay"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "Property",
                                                        "ref_id": "547"
                                                      }
                                                    ],
                                                    "node_type": "Property",
                                                    "ref_id": "547"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "QueryLetRef",
                                                    "ref_id": "548"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "640"
                                              }
                                            ],
                                            "ref_id": "641"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ",&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "MME: "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Quantity { "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "value: "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "dailyDose"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "642"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "value"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "643"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "643"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " * "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "factor"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "QueryLetRef",
                                                            "ref_id": "644"
                                                          }
                                                        ],
                                                        "ref_id": "645"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ", "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "unit: "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "dailyDose"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "646"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "unit"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "647"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "647"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " + "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "'/d'"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "Literal",
                                                            "ref_id": "648"
                                                          }
                                                        ],
                                                        "ref_id": "649"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " }"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Instance",
                                                "ref_id": "650"
                                              }
                                            ],
                                            "ref_id": "651"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "return "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "{&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "rxNormCode: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Med"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "652"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "rxNormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "653"
                                                      }
                                                    ],
                                                    "ref_id": "653"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseFormCode: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "654"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "doseFormCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "655"
                                                      }
                                                    ],
                                                    "ref_id": "655"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "doseQuantity: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "adjustedDoseQuantity"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "656"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "dosesPerDay: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Med"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "657"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "dosesPerDay"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "658"
                                                      }
                                                    ],
                                                    "ref_id": "658"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ingredientCode: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "659"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientCode"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "660"
                                                      }
                                                    ],
                                                    "ref_id": "660"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "ingredientName: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "661"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "ingredientName"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "662"
                                                      }
                                                    ],
                                                    "ref_id": "662"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "strength: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Drug"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "663"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "."
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "strength"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "664"
                                                      }
                                                    ],
                                                    "ref_id": "664"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "dailyDose: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDose"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "665"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "dailyDoseDescription: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "dailyDoseDescription"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "666"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "conversionFactor: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "factor"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "667"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": ",&#13;\n          "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "MME: "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "MME"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "668"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n        }"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Tuple",
                                            "ref_id": "669"
                                          }
                                        ],
                                        "ref_id": "670"
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "671"
                                  }
                                ],
                                "ref_id": "672"
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "673"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "Flatten",
                        "ref_id": "674"
                      }
                    ],
                    "node_type": "Flatten",
                    "ref_id": "674"
                  }
                ],
                "ref_id": "675"
              }
            ],
            "define_name": "CalculateMorphineMilligramEquivalents"
          }
        ],
        "identifier": {
          "id": "OpioidMedicationLogic",
          "version": "1.17.000"
        }
      },
      "is_main_library": false,
      "is_top_level": true,
      "library_name": "OpioidMedicationLogic",
      "library_version": "1.17.000",
      "statement_dependencies": [
        {
          "statement_name": "CalculateMorphineMilligramEquivalents",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "GetIngredients"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "EnsureMicrogramQuantity"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "GetMedicationDailyDose"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "GetConversionFactor"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "GetMedDailyDoseDescription"
            }
          ]
        },
        {
          "statement_name": "GetIngredients",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "OpioidData",
              "statement_name": "DrugIngredients"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "EnsureMicrogramQuantity"
            },
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "ToUnifiedCodeForUnitsOfMeasure"
            }
          ]
        },
        {
          "statement_name": "EnsureMicrogramQuantity"
        },
        {
          "statement_name": "ToUnifiedCodeForUnitsOfMeasure"
        },
        {
          "statement_name": "GetMedicationDailyDose",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "IsTransdermalPatch"
            }
          ]
        },
        {
          "statement_name": "IsTransdermalPatch"
        },
        {
          "statement_name": "GetConversionFactor",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "IsTransdermalPatch"
            }
          ]
        },
        {
          "statement_name": "GetMedDailyDoseDescription",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "OpioidMedicationLogic",
              "statement_name": "IsTransdermalPatch"
            }
          ]
        }
      ]
    },
    {
      "cql": "library MATGlobalCommonFunctions version '2.0.000'\r\n\r\nusing QDM version '5.3'\r\n\r\ncodesystem \"LOINC\": 'urn:oid:2.16.840.1.113883.6.1'\r\ncodesystem \"SNOMEDCT\": 'urn:oid:2.16.840.1.113883.6.96'\r\n\r\nvalueset \"Emergency Department Visit\": 'urn:oid:2.16.840.1.113883.3.117.1.7.1.292'\r\nvalueset \"Encounter Inpatient\": 'urn:oid:2.16.840.1.113883.3.666.5.307'\r\nvalueset \"Intensive Care Unit\": 'urn:oid:2.16.840.1.113762.1.4.1110.23'\r\n\r\ncode \"Birthdate\": '21112-8' from \"LOINC\" display 'Birthdate'\r\ncode \"Dead\": '419099009' from \"SNOMEDCT\" display 'Dead'\r\n\r\nparameter \"Measurement Period\" Interval<DateTime>\r\n\r\ncontext Patient\r\n\r\ndefine \"Encounter\":\r\n\t[\"Encounter, Performed\": \"Emergency Department Visit\"]\r\n\r\ndefine \"Inpatient Encounter\":\r\n\t[\"Encounter, Performed\": \"Encounter Inpatient\"] EncounterInpatient\r\n\t\twhere \"LengthInDays\"(EncounterInpatient.relevantPeriod)<= 120\r\n\t\t\tand EncounterInpatient.relevantPeriod ends during \"Measurement Period\"\r\n\r\n/*ToDate takes a given DateTime value and returns a DateTime with the time components \"zeroed\", and the timezone of the input value, for example, given the DateTime @2012-01-01T06:30:00.0Z, this function will return @2012-01-01T00:00:00.0Z.*/\r\n\r\ndefine function \"ToDate\"(Value DateTime):\r\n\tDateTime(year from Value, month from Value, day from Value, 0, 0, 0, 0, timezone from Value)\r\n\r\n/*CalendarAgeInDaysAt calculates the calendar age (meaning the age without considering time components) in days.*/\r\n\r\ndefine function \"CalendarAgeInDaysAt\"(BirthDateTime DateTime, AsOf DateTime):\r\n\tdays between \"ToDate\"(BirthDateTime)and \"ToDate\"(AsOf)\r\n\r\n/*CalendarAgeInDays calculates the calendar age (meaning the age without considering time components) in days as of today*/\r\n\r\ndefine function \"CalendarAgeInDays\"(BirthDateTime DateTime):\r\n\tCalendarAgeInDaysAt(BirthDateTime, Today())\r\n\r\n/*CalendarAgeInMonthsAt calculates the calendar age (meaning the age without considering time components) in months.*/\r\n\r\ndefine function \"CalendarAgeInMonthsAt\"(BirthDateTime DateTime, AsOf DateTime):\r\n\tmonths between \"ToDate\"(BirthDateTime)and \"ToDate\"(AsOf)\r\n\r\n/*CalendarAgeInMonths calculates the calendar age (meaning the age without considering time components) in months as of today.*/\r\n\r\ndefine function \"CalendarAgeInMonths\"(BirthDateTime DateTime):\r\n\tCalendarAgeInMonthsAt(BirthDateTime, Today())\r\n\r\n/*CalendarAgeInYearsAt calculates the calendar age (meaning the age without considering time components) in years.*/\r\n\r\ndefine function \"CalendarAgeInYearsAt\"(BirthDateTime DateTime, AsOf DateTime):\r\n\tyears between \"ToDate\"(BirthDateTime)and \"ToDate\"(AsOf)\r\n\r\n/*CalendarAgeInYears calculates the calendar age (meaning the age without considering time components) in years as of today.*/\r\n\r\ndefine function \"CalendarAgeInYears\"(BirthDateTime DateTime):\r\n\tCalendarAgeInYearsAt(BirthDateTime, Today())\r\n\r\n/*Hospitalization returns the total interval for admission to discharge for the given encounter, or for the admission of any immediately prior emergency department visit to the discharge of the given encounter.*/\r\n\r\ndefine function \"Hospitalization\"(Encounter \"Encounter, Performed\"):\r\n\t( singleton from ( [\"Encounter, Performed\": \"Emergency Department Visit\"] EDVisit\r\n\t\t\twhere EDVisit.relevantPeriod ends 1 hour or less on or before start of Encounter.relevantPeriod\r\n\t) ) X\r\n\t\treturn if X is null then Encounter.relevantPeriod \r\n\t\t\telse Interval[start of X.relevantPeriod, \r\n\t\tend of Encounter.relevantPeriod]\r\n\r\n/*calculates the difference in calendar days between the start and end of the given interval.*/\r\n\r\ndefine function \"LengthInDays\"(Value Interval<DateTime>):\r\n\tdifference in days between start of Value and \r\n\tend of Value\r\n\r\n/* returns list of all locations within an encounter, including locations for immediately prior ED visit.  If data contains many encounters within 1 hour before the start of encounter error will occur indicating the hospitalization cannot be determined*/\r\n\r\ndefine function \"Hospitalization Locations\"(Encounter \"Encounter, Performed\"):\r\n\t( singleton from ( [\"Encounter, Performed\": \"Emergency Department Visit\"] EDVisit\r\n\t\t\twhere EDVisit.relevantPeriod ends 1 hour or less on or before start of Encounter.relevantPeriod\r\n\t) ) EDEncounter\r\n\t\treturn if EDEncounter is null then Encounter.facilityLocations \r\n\t\t\telse flatten { EDEncounter.facilityLocations, Encounter.facilityLocations }\r\n\r\n/*Returns the length of stay in days (i.e. the number of days between admission and discharge) for the given encounter, or from the admission of any immediately prior emergency department visit to the discharge of the encounter*/\r\n\r\ndefine function \"Hospitalization Length of Stay\"(Encounter \"Encounter, Performed\"):\r\n\tLengthInDays(\"Hospitalization\"(Encounter))\r\n\r\n/*Returns admission time for an encounter or for immediately prior emergency department visit.  If the data contain many encounters within 1 hour before the start of the encounter an error indicating hospitalization cannot be determined\r\n*/\r\n\r\ndefine function \"Hospital Admission Time\"(Encounter \"Encounter, Performed\"):\r\n\tstart of \"Hospitalization\"(Encounter)\r\n\r\n/*Hospital Discharge Time returns the discharge time for an encounter*/\r\n\r\ndefine function \"Hospital Discharge Time\"(Encounter \"Encounter, Performed\"):\r\n\t\r\n\tend of Encounter.relevantPeriod\r\n\r\n/*Returns earliest arrival time for an encounter including any prior ED visit. If the data contain multiple encounters within 1 hour before the start of the encounter, an error will occur indicating it cannot be unambiguously determined\r\n*/\r\n\r\ndefine function \"Hospital Arrival Time\"(Encounter \"Encounter, Performed\"):\r\n\tstart of First((\"Hospitalization Locations\"(Encounter))HospitalLocation\r\n\t\t\tsort by start of locationPeriod\r\n\t).locationPeriod\r\n\r\n/*Returns the latest departure time for encounter including any prior ED visit. If the data contain multiple encounters within 1 hour before the start of the encounter, an error will occur indicating it cannot be unambiguously determined*/\r\n\r\ndefine function \"Hospital Departure Time\"(Encounter \"Encounter, Performed\"):\r\n\t\r\n\tend of Last((\"Hospitalization Locations\"(Encounter))HospitalLocation\r\n\t\t\tsort by start of locationPeriod\r\n\t).locationPeriod\r\n\r\n/*Returns the arrival time in the ED for the encounter.  If the data contain multiple encounters within 1 hour before the start of the encounter or multiple ED locations an error will occur indicating it cannot be determined\r\n*/\r\n\r\ndefine function \"Emergency Department Arrival Time\"(Encounter \"Encounter, Performed\"):\r\n\tstart of ( singleton from ( ( \"Hospitalization Locations\"(Encounter)) HospitalLocation\r\n\t\t\t\twhere HospitalLocation.code in \"Emergency Department Visit\"\r\n\t\t)\r\n\t).locationPeriod\r\n\r\n/*First Inpatient Intensive Care Unit returns the first intensive care unit for\r\nthe given encounter, without considering any immediately prior emergency\r\ndepartment visit.*/\r\n\r\ndefine function \"First Inpatient Intensive Care Unit\"(Encounter \"Encounter, Performed\"):\r\n\tFirst((Encounter.facilityLocations)HospitalLocation\r\n\t\t\twhere HospitalLocation.code in \"Intensive Care Unit\"\r\n\t\t\t\tand HospitalLocation.locationPeriod during Encounter.relevantPeriod\r\n\t\t\tsort by start of locationPeriod\r\n\t)\r\n",
      "elm": {
        "library": {
          "identifier": {
            "id": "OpioidData",
            "version": "0.8.000"
          },
          "schemaIdentifier": {
            "id": "urn:hl7-org:elm",
            "version": "r1"
          },
          "usings": {
            "def": [
              {
                "localIdentifier": "System",
                "uri": "urn:hl7-org:elm-types:r1"
              },
              {
                "localId": "1",
                "localIdentifier": "QDM",
                "uri": "urn:healthit-gov:qdm:v5_3",
                "version": "5.3"
              }
            ]
          },
          "parameters": {
            "def": [
              {
                "localId": "10",
                "name": "Measurement Period",
                "accessLevel": "Public",
                "parameterTypeSpecifier": {
                  "localId": "9",
                  "type": "IntervalTypeSpecifier",
                  "pointType": {
                    "localId": "8",
                    "name": "{urn:hl7-org:elm-types:r1}DateTime",
                    "type": "NamedTypeSpecifier"
                  }
                }
              }
            ]
          },
          "codeSystems": {
            "def": [
              {
                "localId": "2",
                "name": "LOINC",
                "id": "2.16.840.1.113883.6.1",
                "accessLevel": "Public"
              },
              {
                "localId": "3",
                "name": "SNOMEDCT",
                "id": "2.16.840.1.113883.6.96",
                "accessLevel": "Public"
              }
            ]
          },
          "codes": {
            "def": [
              {
                "localId": "5",
                "name": "Birthdate",
                "id": "21112-8",
                "display": "Birthdate",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "4",
                  "name": "LOINC"
                }
              },
              {
                "localId": "7",
                "name": "Dead",
                "id": "419099009",
                "display": "Dead",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "6",
                  "name": "SNOMEDCT"
                }
              }
            ]
          },
          "statements": {
            "def": [
              {
                "name": "Patient",
                "context": "Patient",
                "expression": {
                  "type": "SingletonFrom",
                  "operand": {
                    "dataType": "{urn:healthit-gov:qdm:v5_3}Patient",
                    "templateId": "Patient",
                    "type": "Retrieve"
                  }
                }
              },
              {
                "localId": "10785",
                "name": "DrugIngredients",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "10785",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"DrugIngredients\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "10784",
                          "s": [
                            {
                              "value": [
                                "{ "
                              ]
                            },
                            {
                              "r": "20",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "197696"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "12",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.075 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "14",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "16",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "17",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.075 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "19",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "30",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "197873"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "22",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levorphanol 2 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "24",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6378"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "26",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "27",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "29",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "40",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "198402"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "32",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.5 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "34",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "36",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "37",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "39",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "50",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "198403"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "42",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 2.5 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "44",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "46",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "47",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "49",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "60",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "199400"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "52",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine 50 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "54",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "56",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "57",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "59",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "70",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "199789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "62",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "64",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "66",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "67",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "69",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "80",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "205533"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "72",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Buprenorphine 0.3 MG/ML Injection [Buprenex]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "74",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "76",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "77",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "79",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "90",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "211354"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "82",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet [Talacen]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "84",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "86",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "87",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "89",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "100",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "238129"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "92",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Buprenorphine 0.3 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "94",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "96",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "97",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "99",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "110",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "238133"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "102",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 30 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "104",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "106",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "107",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "109",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "120",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "245134"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "112",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.025 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "114",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "116",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "117",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.025 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.025"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "119",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "130",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "245135"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "122",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.05 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "124",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "126",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "127",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "129",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "140",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "245136"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "132",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.1 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "134",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "136",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "137",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "139",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "150",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "246474"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "142",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.2 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "144",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "146",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "147",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "149",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "160",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "250426"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "152",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.4 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "154",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "156",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "157",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "159",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "170",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "250485"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "162",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 25 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "164",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "166",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "167",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "169",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "180",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "250486"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "172",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 50 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "174",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "176",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "177",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "179",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "190",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "250877"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "182",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 50 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "184",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "186",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "187",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "189",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "200",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261106"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "192",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "194",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "196",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "197",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "199",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "210",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261107"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "202",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "204",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "206",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "207",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "209",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "220",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261108"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "212",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "214",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "216",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "217",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "219",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "230",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261109"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "222",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.2 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "224",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "226",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "227",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "229",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "240",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261110"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "232",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.6 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "234",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "236",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "237",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "239",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "250",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261184"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "242",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.025 MG/HR Transdermal System [Duragesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "244",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "246",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "247",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.025 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.025"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "249",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "260",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261185"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "252",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.05 MG/HR Transdermal System [Duragesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "254",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "256",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "257",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "259",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "270",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "261186"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "262",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.075 MG/HR Transdermal System [Duragesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "264",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "266",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "267",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.075 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "269",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "280",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "262071"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "272",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.1 MG/HR Transdermal System [Duragesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "274",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "276",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "277",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "279",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "290",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "262219"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "282",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Oral Lozenge [Actiq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "284",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "286",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "287",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "289",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "300",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "310293"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "292",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.2 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "294",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "296",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "297",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "299",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "310",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "310294"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "302",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.6 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "304",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "306",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "307",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "309",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "320",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "310295"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "312",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "314",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "316",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "317",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "319",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "330",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "310296"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "322",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "324",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "326",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "327",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "329",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "340",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "310297"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "332",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "334",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "336",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "337",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "339",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "350",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "311297"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "342",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levomethadyl 10 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "344",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "237005"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "346",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levomethadyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "347",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "349",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "360",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "311300"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "352",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levorphanol 2 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "354",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6378"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "356",
                                      "s": [
                                        {
                                          "value": [
                                            "'Levorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "357",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "359",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "369",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "312104"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "362",
                                      "s": [
                                        {
                                          "value": [
                                            "'Belladonna Alkaloids 16.2 MG/Opium 30 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151127"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7676"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "365",
                                      "s": [
                                        {
                                          "value": [
                                            "'Opium'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "366",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "368",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "378",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "312107"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Belladonna Alkaloids 16.2 MG/Opium 60 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151127"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7676"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "374",
                                      "s": [
                                        {
                                          "value": [
                                            "'Opium'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "375",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "377",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "830196"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "380",
                                      "s": [
                                        {
                                          "value": [
                                            "'opium tincture 100 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151131"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7676"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Opium'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "384",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "312288"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "394",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "312289"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Naloxone 0.5 MG / Pentazocine 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "404",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "313992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "414",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "313993"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Lozenge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "424",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "351264"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "434",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "351265"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "444",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "351266"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "454",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "351267"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "464",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "388506"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "469",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Buprenorphine 0.07 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "474",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.07 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.07"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "388507"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "479",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Buprenorphine 0.0525 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "484",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0525 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0525"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "388508"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "489",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Buprenorphine 0.035 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "494",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.035 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.035"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "577057"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "499",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.012 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "504",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.012 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.012"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "583490"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "509",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.012 MG/HR Transdermal System [Duragesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "514",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.012 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.012"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "637540"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "524",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "637540"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "534",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.38 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.38"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668363"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "544",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668364"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "554",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668365"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "564",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668366"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "574",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668367"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "584",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668622"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG Buccal Tablet [Fentora]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "594",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668624"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Buccal Tablet [Fentora]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "604",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668626"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Buccal Tablet [Fentora]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "614",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668628"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Buccal Tablet [Fentora]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "624",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "668630"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Buccal Tablet [Fentora]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "634",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "706898"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "970789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "644",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "724614"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "654",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.19 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.19"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "724614"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "664",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.25 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.25"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "727759"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "669",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Fentanyl 0.05 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "674",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "825409"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "679",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "683",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "684",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "825411"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "689",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "693",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "694",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "825413"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "699",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 75 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "703",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "704",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "827748"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "709",
                                      "s": [
                                        {
                                          "value": [
                                            "'propoxyphene napsylate 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "714",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "827750"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "719",
                                      "s": [
                                        {
                                          "value": [
                                            "'propoxyphene napsylate 100 MG Oral Tablet [Darvon-N]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "724",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "827751"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "734",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "828576"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "744",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "828581"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Propoxyphene Hydrochloride 65 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "754",
                                      "s": [
                                        {
                                          "value": [
                                            "'65 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "65.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "828585"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 32 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "764",
                                      "s": [
                                        {
                                          "value": [
                                            "'32 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "828594"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 65 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "774",
                                      "s": [
                                        {
                                          "value": [
                                            "'65 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "65.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833036"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 750 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "784",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833709"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "789",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "794",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ryzolt]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "804",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833711"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "809",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "814",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833712"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ryzolt]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "824",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833713"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "829",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "834",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "833714"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ryzolt]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "844",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "835603"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "849",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "854",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "835605"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "859",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG Oral Tablet [Ultram]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "864",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "836395"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "874",
                                      "s": [
                                        {
                                          "value": [
                                            "'37.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "37.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "836397"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet [Ultracet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "884",
                                      "s": [
                                        {
                                          "value": [
                                            "'37.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "37.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "836408"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "889",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG Disintegrating Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316942"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Disintegrating Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "894",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "836466"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "899",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "904",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "836485"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "909",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "914",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "845314"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "919",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ultram]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "924",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "845315"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "929",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ultram]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "934",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "845316"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "939",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ultram]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "944",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "848768"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "954",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.84 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.84"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "848772"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Percodan Reformulated May 2009]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "964",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.84 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.84"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "848928"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Endodan Reformulated May 2009]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "974",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.84 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.84"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849279"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene Hydrochloride 65 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "984",
                                      "s": [
                                        {
                                          "value": [
                                            "'65 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "65.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849293"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Propoxyphene Hydrochloride 32.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "994",
                                      "s": [
                                        {
                                          "value": [
                                            "'32.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849295"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / propoxyphene napsylate 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1004",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849303"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1014",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849304"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1024",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849306"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 65 MG/ML / Propoxyphene Hydrochloride 6.5 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1034",
                                      "s": [
                                        {
                                          "value": [
                                            "'6.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849329"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1039",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1044",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849331"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1049",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 75 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1054",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849455"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene Hydrochloride 100 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Propoxyphene'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1064",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849563"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1069",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 150 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1074",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849564"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1079",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 400 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1084",
                                      "s": [
                                        {
                                          "value": [
                                            "'400 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "400.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "849903"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1089",
                                      "s": [
                                        {
                                          "value": [
                                            "'tramadol hydrochloride 50 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1094",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "854140"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1099",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 100 MG Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1103",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1104",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "854142"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1109",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 50 MG Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1113",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1114",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "854144"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1119",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 75 MG Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1123",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1124",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856892"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1134",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856894"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Maxidone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1144",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856903"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1154",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856907"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1164",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856908"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 660 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1174",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856940"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1184",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856942"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hycet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1194",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856944"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1204",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.67 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.67"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution [Zamicet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1214",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.67 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.67"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856962"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1224",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856980"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1234",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856984"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1244",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1254",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856991"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Xodol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1264",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856992"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1274",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856996"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Xodol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1284",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "856999"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1289",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1294",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1299",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Norco]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1304",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857002"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1314",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857004"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Norco]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1324",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857005"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1334",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Norco]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1344",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857076"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.333 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1354",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.333 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.333"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857083"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1364",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857099"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1374",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857105"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1384",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857107"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1394",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857111"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1404",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857113"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1414",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857118"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1424",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857120"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1434",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857121"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1444",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857128"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1454",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857131"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1464",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857134"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1474",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857136"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Zydone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1484",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857237"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine 30 MG/ML Injectable Solution [Talwin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1494",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857370"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Hy-Phen]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1504",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857383"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1514",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857391"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1524",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857501"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 556 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1534",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857510"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1539",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1544",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857512"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1549",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1554",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857556"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1564",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.34 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.34"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857575"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution [Bromplex HD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1574",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.34 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.34"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857734"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1584",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.334 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.334"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857830"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Triant-HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1594",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.334 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.334"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857839"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1604",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857845"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1614",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "857851"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1624",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858087"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 1.2 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1634",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858092"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1644",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858095"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1654",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858098"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1664",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858101"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1674",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858770"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1684",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858772"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1694",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858778"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1704",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858780"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1714",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858784"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1724",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858798"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1734",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858838"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet [Vicoprofen]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1744",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858876"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1754",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858878"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1764",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858937"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hyphed]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1774",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858939"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1779",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1784",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1789",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hydron EX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1794",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858953"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1799",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1804",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858967"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1809",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1814",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.9 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1819",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Hy-KXP]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1824",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.9 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858976"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1829",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Prolex DH]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1834",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.9 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "858991"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1839",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1844",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1854",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859005"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [S-T Forte 2]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1864",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859019"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1869",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydron KGS]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1874",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859027"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1884",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859029"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1894",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859097"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1899",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1904",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859099"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1909",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [KGS HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1914",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859137"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1924",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859141"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [B-Tuss]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1934",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859143"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Drotuss CP]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1944",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859146"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1954",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859150"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Hydron CP]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1964",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859156"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1974",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859162"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1984",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "1997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859164"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Poly-Tussin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1994",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859220"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "1999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2004",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.65 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.65"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859222"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution [Relasin HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2014",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.65 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.65"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859247"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2024",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859315"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2034",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859317"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2044",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859327"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2054",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859329"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution [Hydrofed]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2064",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859331"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2074",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859366"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2084",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859368"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nariz HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2094",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859376"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nazarin HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2104",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859383"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2114",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859939"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2124",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859941"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Exetuss HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2134",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "859943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Simuc-HD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2144",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860138"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2149",
                                      "s": [
                                        {
                                          "value": [
                                            "'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution [De-Chlor NX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2154",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860151"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2164",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860159"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution [De-Chlor MR]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2174",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860239"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Hydro GP]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2184",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860426"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2194",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860446"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Drituss HD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2204",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860530"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Su-Tuss HD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2214",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860579"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.75 MG/ML / Pseudoephedrine 4.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2224",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.75 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.75"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860593"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2234",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.334 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.334"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860599"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2244",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "860792"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2249",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 75 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2254",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861447"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2264",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861455"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 100 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2274",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861459"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 100 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2284",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861463"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2289",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 50 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2294",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861467"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2299",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2304",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861473"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2309",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 50 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2314",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861476"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2319",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 25 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2324",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861479"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 10 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2334",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861482"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2339",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 75 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2344",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861493"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2349",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 100 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2354",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861494"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2359",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 25 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2364",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861517"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 100 MG Oral Tablet [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2374",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861520"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 100 MG/ML Injectable Solution [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2384",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861522"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 50 MG/ML Injectable Solution [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2394",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861525"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 50 MG Oral Tablet [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2404",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861529"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2409",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 50 MG/ML Cartridge [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2414",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861578"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 50 MG / Promethazine Hydrochloride 25 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2424",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "861617"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2429",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 75 MG/ML Cartridge [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2434",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863845"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2444",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863847"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2454",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863848"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2464",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863849"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2474",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863850"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2484",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863851"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2494",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863852"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2504",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863853"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2514",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863854"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2524",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863855"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2534",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863856"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2544",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "863857"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule [Embeda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2554",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864706"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2564",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864708"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG Oral Tablet [Dolophine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2574",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864712"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG Oral Tablet [Methadose]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2584",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864714"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2594",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864718"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2604",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864720"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 5 MG Oral Tablet [Dolophine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2614",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864737"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 5 MG Oral Tablet [Methadose]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2624",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864751"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 0.4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2634",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864761"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2644",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864769"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2654",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864794"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 25 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2664",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864828"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 50 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2674",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 40 MG Tablet for Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1861409"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tablet for Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2684",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864980"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 40 MG Tablet for Oral Suspension [Methadose]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1861409"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tablet for Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2694",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "864984"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2704",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "886622"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol Tartrate 2 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2714",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "886627"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2719",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Butorphanol Tartrate 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2724",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "886634"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol Tartrate 10 MG/ML Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2734",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891172"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor G]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2744",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891874"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2754",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891878"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2759",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2764",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891881"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2774",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891883"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2779",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2784",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891885"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2789",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2794",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891888"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2804",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891890"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2809",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2814",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "891893"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2824",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892297"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2829",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2834",
                                      "s": [
                                        {
                                          "value": [
                                            "'120 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "120.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892299"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2839",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2844",
                                      "s": [
                                        {
                                          "value": [
                                            "'120 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "120.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892342"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2849",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2854",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892344"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2859",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2864",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892345"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2874",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892349"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2879",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2884",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892351"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2889",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2894",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892352"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 60 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2904",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892355"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2909",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2914",
                                      "s": [
                                        {
                                          "value": [
                                            "'90 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "90.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892357"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2919",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2924",
                                      "s": [
                                        {
                                          "value": [
                                            "'90 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "90.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892473"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2929",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 0.5 MG/ML Injection [Duramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2934",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2939",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 1 MG/ML Injection [Duramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2944",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892494"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2954",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892496"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2964",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892516"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2974",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892531"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2984",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "2997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892554"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 100 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2994",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892556"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "2999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 100 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3004",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892560"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 100 MG Extended Release Oral Tablet [MS Contin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3014",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG Extended Release Oral Tablet [MS Contin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3024",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892579"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3034",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892582"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3044",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892589"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3054",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892596"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3064",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892598"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3074",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892603"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3084",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892625"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3094",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892643"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 200 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3104",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892645"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 200 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3114",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892646"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 200 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3124",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892648"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 200 MG Extended Release Oral Tablet [MS Contin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3134",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892652"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3139",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Morphine Sulfate 25 MG/ML Injection [Infumorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3144",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892658"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3154",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892660"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Extended Release Oral Tablet [MS Contin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3164",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892669"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3174",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892672"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3184",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "892678"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3194",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894780"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3204",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894801"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 50 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3214",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894803"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 50 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3224",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894805"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 60 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3234",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894807"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 5 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3244",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 60 MG Extended Release Oral Tablet [MS Contin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3254",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 80 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3264",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894816"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 80 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3274",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894911"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3279",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 ML Morphine Sulfate 14.3 MG/ML Auto-Injector'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649570"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Auto-Injector'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3284",
                                      "s": [
                                        {
                                          "value": [
                                            "'14.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "14.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894912"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3289",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 10 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3294",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894914"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3299",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 8 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3304",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894918"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3309",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Morphine Sulfate 200 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3314",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894933"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 150 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3324",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894942"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3329",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3334",
                                      "s": [
                                        {
                                          "value": [
                                            "'45 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "45.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894970"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3339",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3344",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "894986"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 0.4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3354",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895014"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3364",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895016"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 10 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3374",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895022"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 100 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3384",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895185"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3394",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895194"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 15 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3404",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895199"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 2 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3414",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895201"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3424",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895202"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 20 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3434",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895206"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3444",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895208"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 3 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3454",
                                      "s": [
                                        {
                                          "value": [
                                            "'3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895213"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 30 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3464",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895215"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 35 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3474",
                                      "s": [
                                        {
                                          "value": [
                                            "'35 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "35.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895217"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 5 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3484",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895219"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 5 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3494",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895221"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 50 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3504",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895227"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 50 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3514",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895233"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 6 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3524",
                                      "s": [
                                        {
                                          "value": [
                                            "'6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895238"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3534",
                                      "s": [
                                        {
                                          "value": [
                                            "'6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895240"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 6.67 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3544",
                                      "s": [
                                        {
                                          "value": [
                                            "'6.67 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.67"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895247"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3554",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895248"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 75 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3564",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895861"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 25 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3574",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895867"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine hydrochloride 40 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3584",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895869"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3594",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "895871"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 50 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3604",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897653"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3609",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3614",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897655"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3619",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 1 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3624",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897657"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3634",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897658"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 1 MG/ML Oral Solution [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3644",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897677"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3649",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3654",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897687"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3659",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3664",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897696"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 2 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3674",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897698"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 2 MG Oral Tablet [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3684",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897702"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 4 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3694",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897704"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 4 MG Oral Tablet [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3704",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 8 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3714",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897712"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 8 MG Oral Tablet [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3724",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897730"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3729",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 24 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3734",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "24.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897737"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3739",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3744",
                                      "s": [
                                        {
                                          "value": [
                                            "'32 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897745"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 2 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3754",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897747"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3759",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 2 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3764",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897749"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 3 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3774",
                                      "s": [
                                        {
                                          "value": [
                                            "'3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897753"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3779",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 4 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3784",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897755"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3789",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 4 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3794",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897756"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3799",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3804",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897757"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3809",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3814",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897758"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3819",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 4 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3824",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "897771"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3829",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 1 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3834",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "898004"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 1.3 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3844",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "898138"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 2.6 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3854",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "898139"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 3 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3864",
                                      "s": [
                                        {
                                          "value": [
                                            "'3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "898612"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3869",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydromorphone Hydrochloride 3 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3874",
                                      "s": [
                                        {
                                          "value": [
                                            "'3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "898624"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 30 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3884",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "899125"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 2.4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3894",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902729"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3899",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3904",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902733"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3909",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet [Exalgo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3914",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902736"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3919",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3924",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902738"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3929",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet [Exalgo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3934",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902741"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3939",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3944",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "902743"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3949",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet [Exalgo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3954",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904870"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3959",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.01 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3964",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.01 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.01"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904874"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3969",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.01 MG/HR Transdermal System [BuTrans]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3974",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.01 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.01"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904876"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3979",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.02 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3984",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.02 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.02"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "3997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904878"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3989",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.02 MG/HR Transdermal System [BuTrans]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3994",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.02 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.02"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904880"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "3999",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.005 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4004",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.005 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.005"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904882"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4009",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.005 MG/HR Transdermal System [BuTrans]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4014",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.005 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.005"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977874"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4019",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4024",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977876"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4029",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4034",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977894"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4039",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4044",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977896"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4049",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4054",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977902"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4059",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4064",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977904"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4069",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4074",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977909"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4079",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4084",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977911"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4089",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4094",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977915"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4099",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4104",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977917"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4109",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4114",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977923"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4119",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4124",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977925"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4129",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4134",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977929"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4139",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4144",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977931"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4149",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4154",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977935"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4159",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Oxymorphone Hydrochloride 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4164",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977937"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4169",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Oxymorphone Hydrochloride 1 MG/ML Injection [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4174",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977939"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4184",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977940"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 5 MG Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4194",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977942"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4204",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 10 MG Oral Tablet [Opana]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4214",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977971"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 1.5 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4224",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "977974"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone Hydrochloride 5 MG Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Rectal Suppository'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7814"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxymorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4234",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "991147"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4244",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "991149"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone Hydrochloride 10 MG/ML Oral Solution [Methadose]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6813"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Methadone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4254",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "991486"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4264",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "992656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4269",
                                      "s": [
                                        {
                                          "value": [
                                            "'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4274",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "992668"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4279",
                                      "s": [
                                        {
                                          "value": [
                                            "'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4284",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "992675"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4289",
                                      "s": [
                                        {
                                          "value": [
                                            "'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydromet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4294",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "992733"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4299",
                                      "s": [
                                        {
                                          "value": [
                                            "'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Tussigon]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4304",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993755"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4314",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993763"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4324",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993767"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension [Capital and Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4334",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993770"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4344",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993781"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4354",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993837"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet [Tylenol with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4364",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993890"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4374",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993892"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet [Tylenol with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4384",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993924"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4394",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993926"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule [Colrex]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4404",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "993943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4414",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994043"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4424",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994045"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet [Codrix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4434",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994046"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4444",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994048"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet [Codrix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4454",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994049"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4464",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994051"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet [Codrix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4474",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994226"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4484",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994228"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet [Soma Compound with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4494",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994237"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4504",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994239"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Ascomp]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4514",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994277"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fiorinal with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4524",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994289"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.27 MG/ML / Codeine Phosphate 1.27 MG/ML / Pseudoephedrine Hydrochloride 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4534",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.27 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.27"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994402"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4544",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "994404"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Mar-cof BP]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4554",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995041"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4564",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995043"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4574",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995062"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4584",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995064"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4594",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995065"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4604",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995067"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4614",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995068"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4624",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995070"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4634",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995071"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4644",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995073"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4654",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4664",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995077"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4674",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995079"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4684",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995081"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4694",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995082"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4704",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995084"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4714",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995086"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4724",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4734",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995093"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4744",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995095"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4754",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995108"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4764",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995110"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4774",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995116"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4784",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995118"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4789",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4794",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995120"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4804",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995122"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4809",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension [Zodryl DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4814",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995123"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4824",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995125"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4829",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4834",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995128"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4844",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995132"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution [Z Tuss AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4854",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995211"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4864",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995213"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet [Cotab A]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4874",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995214"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4884",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995216"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet [Cotab AX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4894",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995226"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4904",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995438"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4909",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4914",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.26 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.26"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995440"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [M-Clear WC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4924",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.26 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.26"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995441"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4934",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995443"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution [Mar-cof CG]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4944",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995447"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.8 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4954",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995450"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4964",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995453"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4974",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995455"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet [Maxiphen CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4984",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "4997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995476"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4994",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995478"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "4999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet [Allfen CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5004",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995483"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5014",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995868"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5024",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995872"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheratussin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5034",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995936"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet [Brontex]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5044",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995940"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution [Brontex]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5054",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995956"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheracol with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5064",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995983"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5074",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995985"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Biotussin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5084",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "995993"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Cheratussin DAC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5094",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996253"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Nucofed Expectorant]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5104",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996263"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine Expectorant]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5114",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996462"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Guiatuss AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5124",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996481"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Mytussin AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5134",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996484"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Robafen AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5144",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996512"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 60 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5154",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996580"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5164",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996584"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution [Zotex C]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5174",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996621"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5184",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996623"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Ala-Hist AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5194",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996627"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5204",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996629"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution [Notuss PE]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5214",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996636"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Pyrilamine Maleate 3 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5224",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996640"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5234",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996648"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Pseudodine C]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5244",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996650"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Triacin C]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5254",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996706"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5264",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996708"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Maxiphen CDX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5274",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5284",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996712"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5289",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5294",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996714"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5299",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5304",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996716"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5314",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996718"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5324",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996720"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5334",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996722"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5344",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996724"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5354",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996725"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5364",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996727"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet [Allfen CDX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5374",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996728"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5384",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996730"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule [Nucofed]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5394",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996734"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5404",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996736"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5414",
                                      "s": [
                                        {
                                          "value": [
                                            "'9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "9.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996738"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule [M-Clear WC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5424",
                                      "s": [
                                        {
                                          "value": [
                                            "'9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "9.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996757"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5434",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996976"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 12.8 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5444",
                                      "s": [
                                        {
                                          "value": [
                                            "'12.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 13.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5454",
                                      "s": [
                                        {
                                          "value": [
                                            "'13.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "13.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996979"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5464",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996981"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5474",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996982"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5484",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996983"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5494",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996988"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 300 MG / Codeine Phosphate 8 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5504",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996991"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5514",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996994"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5524",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "996998"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5534",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.27 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.27"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997008"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5544",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997014"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 0.6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5554",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997019"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Kaolin 300 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5564",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997160"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5574",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997164"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 12.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5584",
                                      "s": [
                                        {
                                          "value": [
                                            "'12.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997165"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 12.8 MG / Ibuprofen 200 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5594",
                                      "s": [
                                        {
                                          "value": [
                                            "'12.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997169"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5604",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997170"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine sulfate 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5614",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997175"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5624",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997272"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5634",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997280"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Ibuprofen 300 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5644",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997284"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 3 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5654",
                                      "s": [
                                        {
                                          "value": [
                                            "'3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "3.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997285"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5664",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997287"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine sulfate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5674",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997289"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 30 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5684",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997296"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine sulfate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5694",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997301"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5704",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997303"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 60 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5714",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "997398"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5724",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "998212"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5729",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 2 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5734",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "998213"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5739",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 4 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5744",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "999729"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 250 MG / tramadol hydrochloride 50 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5754",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010600"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5764",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010603"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5774",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010604"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5784",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010606"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5789",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5794",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010608"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5804",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1010609"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5809",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5814",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1012727"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Carbinoxamine maleate 0.4 MG/ML / HYDROcodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151137"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Liquid Product'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5823",
                                      "s": [
                                        {
                                          "value": [
                                            "'HYDROcodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5824",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1014599"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5829",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5834",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1014615"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5844",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1014632"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5854",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1037259"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5864",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1042693"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5874",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1043650"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Poly Hist NC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5884",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1044427"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5894",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.667 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.667"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049214"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5904",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049216"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5909",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Endocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5914",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049221"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5924",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049223"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Endocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5934",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049225"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5944",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049227"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Endocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5954",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049233"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5964",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049251"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5974",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049260"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5984",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "5997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049267"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 400 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5994",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049270"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "5999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6004",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049502"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6009",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6014",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049504"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6024",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049543"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6029",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6034",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049545"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6044",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049557"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6049",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 160 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6054",
                                      "s": [
                                        {
                                          "value": [
                                            "'160 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "160.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049563"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6059",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6064",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049565"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6074",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6079",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6084",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049576"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6094",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049580"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6104",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049582"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution [Roxicet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6114",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049584"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6119",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6124",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049586"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6134",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049589"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Ibuprofen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6144",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049593"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6149",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6154",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049595"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6164",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049599"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6169",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6174",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049601"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet [Oxycontin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6184",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049604"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6194",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049611"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6204",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049613"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 15 MG Oral Tablet [Roxicodone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6214",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049615"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6224",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049618"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6234",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049620"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 30 MG Oral Tablet [Roxicodone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6244",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049621"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6254",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049623"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicodone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6264",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049625"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6274",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049635"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6284",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049637"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6289",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6294",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049640"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6299",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6304",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049642"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6314",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049647"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6324",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049650"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6334",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049651"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6344",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049655"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Xolox]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6354",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049658"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6364",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049683"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6374",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049686"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6384",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049691"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6394",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049696"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6404",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049709"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6414",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049717"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 10 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6424",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049719"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6434",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049720"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 10 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6444",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049721"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 20 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6454",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1049727"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6464",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1050409"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 20 MG/ML Oral Solution [Oxyfast]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6474",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1050490"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6484",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053647"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6494",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053651"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6504",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053652"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6514",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053654"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6524",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053655"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6534",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053657"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6544",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053658"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6549",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6554",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053660"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6564",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053661"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6574",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053663"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6584",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053664"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6594",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1053666"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG Sublingual Tablet [Abstral]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6604",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1086310"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6609",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6614",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1086926"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Relcof C]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6624",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.26 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.26"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1087389"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6629",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule [TussiCaps]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6634",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1087427"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6639",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule [TussiCaps]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6644",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1087459"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6649",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6654",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1087463"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6659",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension [Tussionex]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6664",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088951"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6674",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088953"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6684",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088963"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6694",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6704",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6714",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088970"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6724",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088975"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6734",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1088977"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6744",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089021"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6754",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089023"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6764",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089025"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6774",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089027"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6784",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089028"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6789",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6794",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089030"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension [Zodryl DEC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6804",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089055"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6809",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6814",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089057"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6824",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089058"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6829",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6834",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089060"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6844",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089061"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6854",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089063"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6864",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089070"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6874",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1089072"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6884",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1098906"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6894",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1099711"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG / Triprolidine Hydrochloride 4 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6904",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1112220"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6909",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6914",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1112224"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Zutripro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6924",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113048"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6934",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113050"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Notuss-NXD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6944",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113051"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6954",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113053"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Notuss-NX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6964",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113313"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxecta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6974",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113314"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6984",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "6997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113316"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxecta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6994",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113417"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "6999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7004",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113437"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine DH]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7014",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1113998"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7024",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114002"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution [Codar AR]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7034",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7044",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114026"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7054",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114030"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Codar GF]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7064",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114110"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7074",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114334"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7084",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114338"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Rezira]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7094",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1114878"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7104",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1115573"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG/ACTUAT Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7114",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1115575"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG/ACTUAT Nasal Spray [Lazanda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7124",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1115577"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG/ACTUAT Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7134",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1115579"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG/ACTUAT Nasal Spray [Lazanda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7144",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1145972"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Codar D]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7154",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1147395"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7164",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1147709"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution [Lortuss EX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7174",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148478"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7179",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7184",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148482"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7189",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule [ConZip]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7194",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148485"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7199",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7204",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148487"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7209",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule [ConZip]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7214",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7219",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7224",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148491"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7229",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule [ConZip]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7234",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148797"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7239",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7243",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7244",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148800"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7249",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 150 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7253",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7254",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148803"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7259",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 200 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7263",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7264",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148807"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7269",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 250 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7273",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7274",
                                      "s": [
                                        {
                                          "value": [
                                            "'250 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "250.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1148809"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7279",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 50 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7283",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7284",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1149367"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7289",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 100 MG Extended Release Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7293",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7294",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1149370"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7299",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 150 MG Extended Release Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7303",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7304",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1149373"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7309",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 200 MG Extended Release Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7313",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7314",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1149376"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7319",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 250 MG Extended Release Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7323",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7324",
                                      "s": [
                                        {
                                          "value": [
                                            "'250 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "250.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1149378"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7329",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR tapentadol 50 MG Extended Release Oral Tablet [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7333",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7334",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1190201"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7343",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7344",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1190284"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7349",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule [Avinza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7354",
                                      "s": [
                                        {
                                          "value": [
                                            "'45 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "45.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1190580"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7364",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1190587"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution [M-End Max D]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7374",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1190785"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Atropine Sulfate 0.6 MG/ML / Morphine Sulfate 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7384",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1232113"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7389",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 15 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7394",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1233685"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.003 MG/ML / Ropivacaine hydrochloride 2.5 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7404",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.003 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1233686"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 1 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7414",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.004 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.004"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1233687"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 2 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7424",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.004 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.004"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1233700"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 0.01 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7434",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.01 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.01"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234871"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7443",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7444",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234872"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7453",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7454",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234941"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7463",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7464",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234957"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [ColdCough PD]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7473",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7474",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234976"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Synalgos-DC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7483",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7484",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234978"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 712.8 MG / Caffeine 60 MG / dihydrocodeine bitartrate 32 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7493",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7494",
                                      "s": [
                                        {
                                          "value": [
                                            "'32 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234990"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7503",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7504",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1234999"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / dihydrocodeine bitartrate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7513",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7514",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1235009"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / dihydrocodeine bitartrate 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7523",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7524",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1235011"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / dihydrocodeine bitartrate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7533",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7534",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1235862"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7539",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7544",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236113"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7549",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7553",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7554",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236115"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7559",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Poly Tussin EX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7563",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7564",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236179"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7569",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 120 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7573",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7574",
                                      "s": [
                                        {
                                          "value": [
                                            "'120 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "120.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236181"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7579",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7583",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7584",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236182"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7589",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7593",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7594",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236184"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7599",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 40 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7603",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7604",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236186"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7609",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 50 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7613",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7614",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236188"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7619",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7623",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7624",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236190"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7629",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 90 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7633",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7634",
                                      "s": [
                                        {
                                          "value": [
                                            "'90 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "90.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1236239"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7639",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine bitartrate 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7643",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7644",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237050"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG/ACTUAT Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7654",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237055"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.1 MG/ACTUAT Mucosal Spray [Subsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7664",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.1 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237057"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG/ACTUAT Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7674",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237059"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.2 MG/ACTUAT Mucosal Spray [Subsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7684",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.2 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237060"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG/ACTUAT Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7694",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237062"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.4 MG/ACTUAT Mucosal Spray [Subsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7704",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237064"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG/ACTUAT Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7714",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237066"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.6 MG/ACTUAT Mucosal Spray [Subsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7724",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237068"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG/ACTUAT Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7734",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1237070"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.8 MG/ACTUAT Mucosal Spray [Subsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "346163"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Mucosal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7744",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1242106"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7749",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 100 MG/ML Cartridge [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7754",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1242503"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7759",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 25 MG/ML Cartridge [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7764",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1242558"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Statuss Green Reformulated Jan 2012]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7774",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1244754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7784",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1244921"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7789",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution [M-End PE]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7794",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.27 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.27"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1248039"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7799",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Entuss-D Liquid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7804",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1248040"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7809",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7814",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1248044"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7819",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Nalex Expectorant]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7824",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1248046"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7829",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Vanacon]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7834",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1248115"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7839",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR tramadol hydrochloride 150 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7844",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1294356"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Bromodiphenhydramine hydrochloride 2.5 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7854",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1294380"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7864",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1294382"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7874",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1294383"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7884",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1297584"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension [Dytan-HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7894",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1297649"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine sulfate 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7904",
                                      "s": [
                                        {
                                          "value": [
                                            "'6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1302739"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7909",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol 10 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7914",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1302741"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol 10 MG/ML Injectable Solution [Dolorex Solution]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7924",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303729"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 130 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7934",
                                      "s": [
                                        {
                                          "value": [
                                            "'130 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "130.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303731"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 130 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7944",
                                      "s": [
                                        {
                                          "value": [
                                            "'130 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "130.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303733"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 150 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7954",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303736"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 40 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7964",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303738"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 40 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7974",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303740"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 70 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7984",
                                      "s": [
                                        {
                                          "value": [
                                            "'70 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "70.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "7997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1303742"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine Sulfate 70 MG Extended Release Oral Capsule [Kadian]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7994",
                                      "s": [
                                        {
                                          "value": [
                                            "'70 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "70.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1306898"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "7999",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8004",
                                      "s": [
                                        {
                                          "value": [
                                            "'32 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1306900"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8009",
                                      "s": [
                                        {
                                          "value": [
                                            "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet [Exalgo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8014",
                                      "s": [
                                        {
                                          "value": [
                                            "'32 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "32.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1307056"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8024",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1307058"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8034",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1307061"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8044",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1307063"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip [Suboxone]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "704866"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Strip'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8054",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "12.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1308438"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8064",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1308440"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Nalex AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8074",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1310202"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8084",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1310212"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Vicodin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8094",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1310270"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Vicodin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8104",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1310927"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol 10 MG/ML Injectable Solution [Butorphic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8114",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1313294"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8124",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356315"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8129",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 20 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8133",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8134",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356319"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8139",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol 20 MG/ML Oral Solution [Nucynta]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "787390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8143",
                                      "s": [
                                        {
                                          "value": [
                                            "'tapentadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8144",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356797"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8154",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356799"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8164",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356800"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8174",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356802"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet [BroveX CB]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8184",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8194",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356806"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8204",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356807"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8214",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356809"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8219",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet [BroveX CB]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8224",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1356835"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.6 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8234",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1357402"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8239",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylpropanolamine Hydrochloride 2.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8244",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1357940"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8249",
                                      "s": [
                                        {
                                          "value": [
                                            "'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8254",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1357942"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8259",
                                      "s": [
                                        {
                                          "value": [
                                            "'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Zotex HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8264",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1358753"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8269",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8274",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1366873"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8284",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1366875"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8289",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [P-V-Tussin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8294",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1366879"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8299",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [P-V-Tussin Syrup]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8304",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1368072"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Tusnel C]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8314",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1372265"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8324",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1372873"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Vituz]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8334",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1424295"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Chlorpheniramine Maleate 2 MG / Codeine Phosphate 8 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8344",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1424297"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 6 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8354",
                                      "s": [
                                        {
                                          "value": [
                                            "'6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1431076"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8364",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1431083"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8374",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1431102"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8384",
                                      "s": [
                                        {
                                          "value": [
                                            "'5.7 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1431104"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8394",
                                      "s": [
                                        {
                                          "value": [
                                            "'5.7 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1431286"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8404",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1432969"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8409",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.015 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8414",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.015 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.015"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1432971"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8419",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.015 MG/HR Transdermal System [BuTrans]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8424",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.015 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.015"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1433251"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8429",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8434",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1433802"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fioricet with Codeine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8444",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1440003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.8 MG/ML / Dexchlorpheniramine maleate 0.2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8454",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1442445"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8464",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.667 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.667"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1442790"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8469",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 5 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8474",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1487288"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Endocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8484",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1487611"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 50 MG/ML Topical Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316986"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Topical Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8494",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1487616"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 50 MG/ML Topical Solution [Recuvyra]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316986"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Topical Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8504",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1488634"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316950"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8514",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1488639"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension [Animalgesics]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316950"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8524",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1489991"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8529",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol 10 MG/ML Injectable Solution [Torbugesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8534",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1491832"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8539",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8544",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1491834"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8549",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet [Xartemis]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8554",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1492671"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lorcet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8564",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1492673"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lorcet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8574",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1492675"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lorcet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8584",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1495472"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8594",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1495474"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8604",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1495476"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8614",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1535979"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8624",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.65 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.65"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1535981"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution [Z-Cof HC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8634",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.65 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.65"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1536457"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Effervescent Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1535727"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Effervescent Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8644",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1536459"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Effervescent Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1535727"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Effervescent Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8654",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1537116"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Primlev]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8664",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1537120"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Primlev]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8674",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1537122"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Primlev]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8684",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1541630"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Brompheniramine Maleate 0.8 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8694",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542390"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8704",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542396"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film [Bunavail]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8714",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.1 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.1"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542981"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Verdrocet]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8724",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542988"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Xylon]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8734",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542997"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8739",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.0075 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8744",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0075 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1542999"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8749",
                                      "s": [
                                        {
                                          "value": [
                                            "'168 HR Buprenorphine 0.0075 MG/HR Transdermal System [BuTrans]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8754",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0075 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1544851"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8764",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1544853"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film [Bunavail]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8774",
                                      "s": [
                                        {
                                          "value": [
                                            "'4.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1544854"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8784",
                                      "s": [
                                        {
                                          "value": [
                                            "'6.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1544856"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8789",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film [Bunavail]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8794",
                                      "s": [
                                        {
                                          "value": [
                                            "'6.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "6.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1545903"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8799",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naloxone Hydrochloride 10 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8804",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1545907"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8809",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naloxone Hydrochloride 20 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8814",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1545910"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8819",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8824",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1546089"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8829",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Targiniq]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8834",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1547607"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8839",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Lortuss EX]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8844",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1594650"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8849",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 1.8 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8854",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1594655"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8859",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 1.8 MG/ML Injectable Solution [Simbadol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8864",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.8"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595214"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8869",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Ninjacof XG]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8874",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.6 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595730"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8879",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8884",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595736"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8889",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8894",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595740"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8899",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8904",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595742"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8909",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8914",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595746"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8919",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8924",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595748"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8929",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8934",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595752"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8939",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8944",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8949",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8954",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595758"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8959",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8964",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595760"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8969",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8974",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595764"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8979",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8984",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "8997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595766"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8989",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8994",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595770"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "8999",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9004",
                                      "s": [
                                        {
                                          "value": [
                                            "'120 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "120.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1595772"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9009",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet [Hysingla]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9014",
                                      "s": [
                                        {
                                          "value": [
                                            "'120 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "120.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1596108"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9019",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316965"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9023",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9024",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1597568"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9029",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9034",
                                      "s": [
                                        {
                                          "value": [
                                            "'11.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "11.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1597570"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9044",
                                      "s": [
                                        {
                                          "value": [
                                            "'11.4 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "11.4"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1597573"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9054",
                                      "s": [
                                        {
                                          "value": [
                                            "'8.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1597575"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9064",
                                      "s": [
                                        {
                                          "value": [
                                            "'8.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1598284"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Obredon]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9074",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1603495"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9079",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.0375 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9084",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0375 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0375"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1603498"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9089",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.0625 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9094",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0625 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0625"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1603501"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9099",
                                      "s": [
                                        {
                                          "value": [
                                            "'72 HR Fentanyl 0.0875 MG/HR Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9104",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.0875 MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.0875"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/HR'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1650982"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Flowtuss]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9114",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1651558"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9124",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1651564"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hycofenix]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9134",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1652087"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9139",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9144",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1652093"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9149",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension [Tuzistra]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316946"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Suspension'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9154",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1655032"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9159",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Buprenorphine 0.3 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9164",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1655058"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 150 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9174",
                                      "s": [
                                        {
                                          "value": [
                                            "'150 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "150.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1655060"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine Hydrochloride 75 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9184",
                                      "s": [
                                        {
                                          "value": [
                                            "'75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "75.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1661319"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9194",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1661325"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution [Histex AC]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9204",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1664448"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9209",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxaydo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9214",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1664543"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9219",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Chlorpheniramine Maleate 8 MG / Codeine Phosphate 54.3 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9224",
                                      "s": [
                                        {
                                          "value": [
                                            "'54.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "54.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1664634"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9229",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxaydo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9234",
                                      "s": [
                                        {
                                          "value": [
                                            "'7.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "7.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665685"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9239",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 100 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9244",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665687"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9249",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 100 MG/ML Injection [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9254",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665690"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9259",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9264",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665691"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9269",
                                      "s": [
                                        {
                                          "value": [
                                            "'1.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9274",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665697"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9279",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9284",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665698"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9289",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9294",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665699"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9299",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9304",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665700"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9309",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9313",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9314",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665701"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9319",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9324",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1665702"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9329",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "6754"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Meperidine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9334",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1666338"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9344",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1666385"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9354",
                                      "s": [
                                        {
                                          "value": [
                                            "'2.9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1666831"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.04 MG Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9364",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.04 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.04"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1666837"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.04 MG Transdermal System [Ionsys]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316987"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Transdermal System'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9374",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.04 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.04"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716057"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.15 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9384",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.15"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716063"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9389",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.15 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9394",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.15"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716065"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9399",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.3 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9404",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716067"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9409",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.3 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9414",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716069"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9419",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.45 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9424",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.45 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.45"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716071"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9429",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.45 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9434",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.45 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.45"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716073"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9439",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.6 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9444",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9449",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.6 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9454",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.6 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.6"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716077"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9459",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.075 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9464",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.075 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716079"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9469",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.075 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9474",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.075 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.075"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716081"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9479",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.75 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9484",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.75"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716083"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9489",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.75 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9494",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.75 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.75"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716086"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9499",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.9 MG Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9504",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1716090"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.9 MG Buccal Film [Belbuca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "858080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buccal Film'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9514",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.9"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724276"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9519",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 2 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9524",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9537",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724338"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9529",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9531",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9533",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9534",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9536",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9547",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724340"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9539",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9543",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9544",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9546",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9557",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724341"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9549",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9551",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9553",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9554",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9556",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9567",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724352"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 250 MG Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9561",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9563",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9564",
                                      "s": [
                                        {
                                          "value": [
                                            "'250 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "250.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9566",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9577",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724354"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone Hydrochloride 250 MG Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9571",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9573",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9574",
                                      "s": [
                                        {
                                          "value": [
                                            "'250 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "250.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9576",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9587",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724356"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9579",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9581",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9583",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9584",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9586",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9597",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724358"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9589",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9591",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9593",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9594",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9596",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9607",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724359"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9599",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9601",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9603",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9604",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9606",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9617",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724383"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9609",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 1 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9611",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9613",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9614",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9616",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9627",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1724644"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9619",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 2 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9621",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9623",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9624",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9626",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9637",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728351"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9629",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Butorphanol Tartrate 2 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9631",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9633",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9634",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9636",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9647",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728355"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9639",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Butorphanol Tartrate 2 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9641",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9643",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9644",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9646",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9657",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728783"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9649",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9651",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9653",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9654",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9656",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9667",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728784"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9659",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9661",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9663",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9664",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9666",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9677",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728789"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9669",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9671",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9673",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9674",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9676",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9687",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728791"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9679",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9681",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9683",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9684",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9686",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9697",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728792"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9689",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9691",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9693",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9694",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9696",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9707",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728800"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9699",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9701",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9703",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9704",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9706",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9717",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728801"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9709",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9711",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9713",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9714",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9716",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9727",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728805"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9719",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Morphine Sulfate 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9721",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9723",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9724",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9726",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9737",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728806"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9729",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9731",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9733",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9734",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9736",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9747",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1728999"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9739",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 ML Morphine Sulfate 1 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9741",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9743",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9744",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9746",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9757",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1729197"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9749",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 2 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9751",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9753",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9754",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9756",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9767",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1729320"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG/ACTUAT Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9761",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9763",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9764",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9766",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9777",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1729322"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl 0.3 MG/ACTUAT Nasal Spray [Lazanda]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "126542"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9771",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nasal Spray'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9773",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9774",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.3 MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.3"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9776",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ACTUAT'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9787",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731517"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9779",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Morphine Sulfate 25 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9781",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9783",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9784",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9786",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9797",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731520"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9789",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 ML Morphine Sulfate 25 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9791",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9793",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9794",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9796",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9807",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731522"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9799",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Morphine Sulfate 25 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9801",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9803",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9804",
                                      "s": [
                                        {
                                          "value": [
                                            "'25 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "25.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9806",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9817",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731530"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9809",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 15 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9811",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9813",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9814",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9816",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9827",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731537"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9819",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Morphine Sulfate 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9821",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9823",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9824",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9826",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9837",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731545"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9829",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 ML Morphine Sulfate 50 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9831",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9833",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9834",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9836",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9847",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731993"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9839",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9841",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9843",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9844",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9846",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9857",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731995"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9849",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 10 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9851",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9853",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9854",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9856",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9867",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731998"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9859",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Morphine Sulfate 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9861",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9863",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9864",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9866",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9877",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1731999"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9869",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Morphine Sulfate 10 MG/ML Injection [Infumorph]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9871",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9873",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9874",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9876",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9887",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9879",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 8 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9881",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9883",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9884",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9886",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9897",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732006"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9889",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 4 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9891",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9893",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9894",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9896",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9907",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732011"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9899",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 8 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9901",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9903",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9904",
                                      "s": [
                                        {
                                          "value": [
                                            "'8 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "8.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9906",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9917",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732014"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9909",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 4 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9911",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9913",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9914",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9916",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9927",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732136"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9919",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 5 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9921",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9923",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9924",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9926",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9937",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1732138"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9929",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 ML Morphine Sulfate 5 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9931",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9933",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9934",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9936",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9947",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1733080"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9939",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Morphine Sulfate 15 MG/ML Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649572"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9941",
                                      "s": [
                                        {
                                          "value": [
                                            "'Cartridge'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9943",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9944",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9946",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9957",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735003"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9949",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Fentanyl 0.05 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9951",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9953",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9954",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9956",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9967",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735006"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9959",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Fentanyl 0.05 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9961",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9963",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9964",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9966",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9977",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9969",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 ML Fentanyl 0.05 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9971",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9973",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9974",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9976",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9987",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735008"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9979",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Fentanyl 0.05 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9981",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9983",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9984",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9986",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "9997",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735013"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9989",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 ML Fentanyl 0.05 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9991",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9993",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9994",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9996",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10007",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735057"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "9999",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10001",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10003",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10004",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10006",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10017",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735060"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10009",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10011",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10013",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10014",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10016",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10027",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735062"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10019",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10021",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10023",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10024",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10026",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10037",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1735065"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10029",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10031",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "4337"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10033",
                                      "s": [
                                        {
                                          "value": [
                                            "'Fentanyl'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10034",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.05 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.05"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10036",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10047",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1745881"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10039",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Morphabond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10041",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10043",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10044",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10046",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10057",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1745886"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10049",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet [Morphabond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10051",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10053",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10054",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10056",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10067",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1745889"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10059",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Morphabond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10061",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10063",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10064",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10066",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10077",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1745892"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10069",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Morphabond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10071",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10073",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10074",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10076",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10087",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1790527"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10079",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10081",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10083",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10084",
                                      "s": [
                                        {
                                          "value": [
                                            "'9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "9.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10086",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10097",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1790533"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10089",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule [Xtampza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10091",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10093",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10094",
                                      "s": [
                                        {
                                          "value": [
                                            "'9 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "9.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10096",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10107",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791558"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10099",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10101",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10103",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10104",
                                      "s": [
                                        {
                                          "value": [
                                            "'13.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "13.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10106",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10117",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791560"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10109",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule [Xtampza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10111",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10113",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10114",
                                      "s": [
                                        {
                                          "value": [
                                            "'13.5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "13.5"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10116",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10127",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791567"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10119",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10121",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10123",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10124",
                                      "s": [
                                        {
                                          "value": [
                                            "'18 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "18.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10126",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10137",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791569"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10129",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule [Xtampza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10131",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10133",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10134",
                                      "s": [
                                        {
                                          "value": [
                                            "'18 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "18.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10136",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10147",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10139",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10141",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10143",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10144",
                                      "s": [
                                        {
                                          "value": [
                                            "'27 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "27.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10146",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10157",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791576"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10149",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule [Xtampza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10151",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10153",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10154",
                                      "s": [
                                        {
                                          "value": [
                                            "'27 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "27.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10156",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10167",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791580"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10159",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10161",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10163",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10164",
                                      "s": [
                                        {
                                          "value": [
                                            "'36 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "36.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10166",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10177",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1791582"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10169",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule [Xtampza]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10171",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10173",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10174",
                                      "s": [
                                        {
                                          "value": [
                                            "'36 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "36.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10176",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10187",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1792707"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10179",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316968"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10181",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "2670"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10183",
                                      "s": [
                                        {
                                          "value": [
                                            "'Codeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10184",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10186",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10197",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1797650"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10189",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 74.2 MG Drug Implant'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "657710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10191",
                                      "s": [
                                        {
                                          "value": [
                                            "'Drug Implant'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10193",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10194",
                                      "s": [
                                        {
                                          "value": [
                                            "'74.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "74.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10196",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10207",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1797655"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10199",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 74.2 MG Drug Implant [Probuphine]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "657710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10201",
                                      "s": [
                                        {
                                          "value": [
                                            "'Drug Implant'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10203",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10204",
                                      "s": [
                                        {
                                          "value": [
                                            "'74.2 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "74.2"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10206",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10217",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806701"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10209",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10211",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10213",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10214",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10216",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10227",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806707"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10219",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule [Troxyca]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10221",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10223",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10224",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10226",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10237",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806710"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10229",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 2.4 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10231",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10233",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10234",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10236",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10247",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806716"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10239",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 3.6 MG / Oxycodone Hydrochloride 30 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10241",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10243",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10244",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10246",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10257",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806722"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10249",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 4.8 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10251",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10253",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10254",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10256",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10267",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806728"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10259",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 7.2 MG / Oxycodone Hydrochloride 60 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10261",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10263",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10264",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10266",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10277",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1806734"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10269",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Naltrexone hydrochloride 9.6 MG / Oxycodone Hydrochloride 80 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10271",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10273",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10274",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10276",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10287",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1809204"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10279",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol Tartrate 2 MG/ML Injectable Solution [Torbugesic]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10281",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10283",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10284",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10286",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10297",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1811473"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10289",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Pentazocine 30 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10291",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10293",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10294",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10296",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10307",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1811475"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10299",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Pentazocine 30 MG/ML Injection [Talwin]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1649574"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10301",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "8001"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10303",
                                      "s": [
                                        {
                                          "value": [
                                            "'Pentazocine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10304",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10306",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10317",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1812164"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10309",
                                      "s": [
                                        {
                                          "value": [
                                            "'Acetaminophen 325 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10311",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "23088"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10313",
                                      "s": [
                                        {
                                          "value": [
                                            "'dihydrocodeine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10314",
                                      "s": [
                                        {
                                          "value": [
                                            "'16 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "16.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10316",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10327",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860127"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10319",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10321",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10323",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10324",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10326",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10337",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860129"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10329",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10331",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10333",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10334",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10336",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10347",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860137"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10339",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10341",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10343",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10344",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10346",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10357",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860148"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10349",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10351",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10353",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10354",
                                      "s": [
                                        {
                                          "value": [
                                            "'80 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "80.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10356",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10367",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860151"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10359",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10361",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10363",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10364",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10366",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10377",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860154"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10369",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10371",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10373",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10374",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10376",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10387",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860157"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10379",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10381",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10383",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10384",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10386",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10397",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860491"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10389",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10391",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10393",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10394",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10396",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10407",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860492"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10399",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10401",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10403",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10404",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10406",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10417",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860493"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10409",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10411",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10413",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10414",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10416",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10427",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860494"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10419",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10421",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10423",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10424",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10426",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10437",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860495"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10429",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10431",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10433",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10434",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10436",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10447",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860496"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10439",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10441",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10443",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10444",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10446",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10457",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860497"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10449",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10451",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10453",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10454",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10456",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10467",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860498"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10459",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10461",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10463",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10464",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10466",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10477",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860499"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10469",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10471",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10473",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10474",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10476",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10487",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860500"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10479",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10481",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10483",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10484",
                                      "s": [
                                        {
                                          "value": [
                                            "'40 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "40.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10486",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10497",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860501"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10489",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10491",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10493",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10494",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10496",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10507",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1860502"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10499",
                                      "s": [
                                        {
                                          "value": [
                                            "'12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule [Zohydro]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316943"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10501",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Capsule'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "5489"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10503",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydrocodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10504",
                                      "s": [
                                        {
                                          "value": [
                                            "'50 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "50.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10506",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10517",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1864412"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10509",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10511",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10513",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10514",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10516",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10527",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1864414"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10519",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet [Zubsolv]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317007"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10521",
                                      "s": [
                                        {
                                          "value": [
                                            "'Sublingual Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1819"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10523",
                                      "s": [
                                        {
                                          "value": [
                                            "'Buprenorphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10524",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.7 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "0.7"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10526",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10536",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1866543"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10529",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Nalbuphine Hydrochloride 10 MG/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151126"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7238"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10532",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10533",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10535",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10545",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1866551"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10538",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Nalbuphine Hydrochloride 20 M/ML Injection'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151126"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7238"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10541",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10542",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10544",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10554",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904415"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10547",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine Hydrochloride 10MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151126"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7238"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10550",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10551",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10553",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10563",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "904440"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10556",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine Hydrochloride 20 MG/ML Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "1151126"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7238"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10559",
                                      "s": [
                                        {
                                          "value": [
                                            "'Nalbuphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10560",
                                      "s": [
                                        {
                                          "value": [
                                            "'20 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "20.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10562",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10573",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871434"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10565",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10567",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10569",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10570",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10572",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10583",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871440"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10575",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Arymo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10577",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10579",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10580",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10582",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10593",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871441"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10585",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10587",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10589",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10590",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10592",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10603",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871443"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10595",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Arymo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10597",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10599",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10600",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10602",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10613",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871444"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10605",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10607",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10609",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10610",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10612",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10623",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1871446"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10615",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Arymo]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10617",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10619",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10620",
                                      "s": [
                                        {
                                          "value": [
                                            "'60 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "60.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10622",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10633",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872234"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10625",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10627",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7052"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10629",
                                      "s": [
                                        {
                                          "value": [
                                            "'Morphine'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10630",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10632",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10643",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872265"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10635",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10637",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10639",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10640",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10642",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10653",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872269"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10645",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10647",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10649",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10650",
                                      "s": [
                                        {
                                          "value": [
                                            "'2 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "2.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10652",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10663",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872271"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10655",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10657",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10659",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10660",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10662",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10673",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872272"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10665",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10667",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10669",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10670",
                                      "s": [
                                        {
                                          "value": [
                                            "'4 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "4.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10672",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10683",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1872752"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10675",
                                      "s": [
                                        {
                                          "value": [
                                            "'0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "721656"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10677",
                                      "s": [
                                        {
                                          "value": [
                                            "'Prefilled Syringe'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "3423"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10679",
                                      "s": [
                                        {
                                          "value": [
                                            "'Hydromorphone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10680",
                                      "s": [
                                        {
                                          "value": [
                                            "'1 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "1.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10682",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10693",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944529"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10685",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10687",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10689",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10690",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10692",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10703",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944535"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10695",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet [Roxybond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10697",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10699",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10700",
                                      "s": [
                                        {
                                          "value": [
                                            "'15 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "15.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10702",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10713",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944538"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10705",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10707",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10709",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10710",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10712",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10723",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944540"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10715",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet [Roxybond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10717",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10719",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10720",
                                      "s": [
                                        {
                                          "value": [
                                            "'30 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "30.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10722",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10733",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10725",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10727",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10729",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10730",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10732",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10743",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1944543"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10735",
                                      "s": [
                                        {
                                          "value": [
                                            "'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet [Roxybond]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "317541"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10737",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "7804"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10739",
                                      "s": [
                                        {
                                          "value": [
                                            "'Oxycodone'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10740",
                                      "s": [
                                        {
                                          "value": [
                                            "'5 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "5.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10742",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10753",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1946525"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10745",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10747",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10749",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10750",
                                      "s": [
                                        {
                                          "value": [
                                            "'300 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "300.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10752",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10763",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1946527"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10755",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10757",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10759",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10760",
                                      "s": [
                                        {
                                          "value": [
                                            "'200 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "200.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10762",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10773",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1946529"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10765",
                                      "s": [
                                        {
                                          "value": [
                                            "'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316945"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10767",
                                      "s": [
                                        {
                                          "value": [
                                            "'Extended Release Oral Tablet'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "10689"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10769",
                                      "s": [
                                        {
                                          "value": [
                                            "'Tramadol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10770",
                                      "s": [
                                        {
                                          "value": [
                                            "'100 MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "100.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10772",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ", "
                              ]
                            },
                            {
                              "r": "10783",
                              "s": [
                                {
                                  "value": [
                                    "{\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugCode",
                                        ": ",
                                        "1947138"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "drugName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10775",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol 10 MG/ML Injectable Solution [Torphaject]'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormCode",
                                        ": ",
                                        "316949"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "doseFormName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10777",
                                      "s": [
                                        {
                                          "value": [
                                            "'Injectable Solution'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientCode",
                                        ": ",
                                        "1841"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "ingredientName",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10779",
                                      "s": [
                                        {
                                          "value": [
                                            "'Butorphanol'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strength",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10780",
                                      "s": [
                                        {
                                          "value": [
                                            "'10 MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthValue",
                                        ": ",
                                        "10.0"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ",\r\n\t\t"
                                  ]
                                },
                                {
                                  "s": [
                                    {
                                      "value": [
                                        "strengthUnit",
                                        ": "
                                      ]
                                    },
                                    {
                                      "r": "10782",
                                      "s": [
                                        {
                                          "value": [
                                            "'MG/ML'"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t}"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "10784",
                  "type": "List",
                  "element": [
                    {
                      "localId": "20",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "11",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "197696",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "12",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.075 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "13",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "14",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "15",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "16",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "17",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.075 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "18",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "19",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "30",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "21",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "197873",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "22",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levorphanol 2 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "23",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "24",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "25",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6378",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "26",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "27",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "28",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "29",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "40",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "31",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "198402",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "32",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.5 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "33",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "34",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "35",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "36",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "37",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "38",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "39",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "50",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "41",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "198403",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "42",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 2.5 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "43",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "44",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "45",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "46",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "47",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "48",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "49",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "60",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "51",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "199400",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "52",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine 50 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "53",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "54",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "55",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "56",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "57",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "58",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "59",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "70",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "61",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "199789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "62",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "63",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "64",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "65",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "66",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "67",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "68",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "69",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "80",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "71",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "205533",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "72",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Buprenorphine 0.3 MG/ML Injection [Buprenex]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "73",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "74",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "75",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "76",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "77",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "78",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "79",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "90",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "81",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "211354",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "82",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet [Talacen]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "83",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "84",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "85",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "86",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "87",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "88",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "89",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "100",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "91",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "238129",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "92",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Buprenorphine 0.3 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "93",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "94",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "95",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "96",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "97",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "98",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "99",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "110",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "101",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "238133",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "102",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 30 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "103",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "107",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "120",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "111",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "245134",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "112",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.025 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "113",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "117",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.025 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.025",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "130",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "121",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "245135",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "122",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.05 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "123",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "127",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "140",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "131",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "245136",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "132",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.1 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "133",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "137",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "150",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "141",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "246474",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "142",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.2 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "143",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "147",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "160",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "151",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "250426",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "152",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.4 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "153",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "157",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "170",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "161",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "250485",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "162",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 25 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "163",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "167",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "180",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "171",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "250486",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "172",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 50 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "173",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "177",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "190",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "181",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "250877",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "182",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 50 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "183",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "187",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "200",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "191",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261106",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "192",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "193",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "197",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "210",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "201",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261107",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "202",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "203",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "207",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "220",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "211",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261108",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "212",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "213",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "217",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "230",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "221",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261109",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "222",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.2 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "223",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "227",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "240",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "231",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261110",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "232",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.6 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "233",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "237",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "250",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "241",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261184",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "242",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.025 MG/HR Transdermal System [Duragesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "243",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "247",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.025 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.025",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "260",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "251",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261185",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "252",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.05 MG/HR Transdermal System [Duragesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "253",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "257",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "270",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "261",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "261186",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "262",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.075 MG/HR Transdermal System [Duragesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "263",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "267",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.075 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "280",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "271",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "262071",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "272",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.1 MG/HR Transdermal System [Duragesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "273",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "277",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "290",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "281",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "262219",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "282",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Oral Lozenge [Actiq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "283",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "287",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "300",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "291",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "310293",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "292",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.2 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "293",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "297",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "310",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "301",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "310294",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "302",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.6 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "303",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "307",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "320",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "311",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "310295",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "312",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "313",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "317",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "330",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "321",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "310296",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "322",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "323",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "327",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "340",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "331",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "310297",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "332",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "333",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "337",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "350",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "341",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "311297",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "342",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levomethadyl 10 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "343",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "237005",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levomethadyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "347",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "360",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "351",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "311300",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "352",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levorphanol 2 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "353",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6378",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Levorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "357",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "369",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "361",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "312104",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "362",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Belladonna Alkaloids 16.2 MG/Opium 30 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "363",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151127",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "364",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7676",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "365",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Opium",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "367",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "368",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "378",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "312107",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Belladonna Alkaloids 16.2 MG/Opium 60 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151127",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "373",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7676",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Opium",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "375",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "376",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "377",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "379",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "830196",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "380",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "opium tincture 100 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "381",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151131",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7676",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Opium",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "312288",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "312289",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Naloxone 0.5 MG / Pentazocine 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "313992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "313993",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Lozenge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "351264",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "351265",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "351266",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "351267",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "388506",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Buprenorphine 0.07 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.07 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.07",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "388507",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Buprenorphine 0.0525 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0525 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0525",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "388508",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Buprenorphine 0.035 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.035 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.035",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "577057",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.012 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.012 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.012",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "583490",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.012 MG/HR Transdermal System [Duragesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.012 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.012",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "637540",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "637540",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.38 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.38",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668363",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668364",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668365",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668366",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668367",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668622",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG Buccal Tablet [Fentora]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668624",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Buccal Tablet [Fentora]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668626",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Buccal Tablet [Fentora]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668628",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Buccal Tablet [Fentora]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "668630",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Buccal Tablet [Fentora]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "706898",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "970789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "724614",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.19 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.19",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "724614",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.25 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.25",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "727759",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Fentanyl 0.05 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "825409",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "825411",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "825413",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 75 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "827748",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "propoxyphene napsylate 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "827750",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "propoxyphene napsylate 100 MG Oral Tablet [Darvon-N]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "827751",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / propoxyphene napsylate 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "828576",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / propoxyphene napsylate 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "828581",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Propoxyphene Hydrochloride 65 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "65 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "65.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "828585",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 32 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "828594",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 65 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "65 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "65.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833036",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 750 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833709",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ryzolt]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833711",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833712",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ryzolt]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833713",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "833714",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ryzolt]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "835603",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "835605",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG Oral Tablet [Ultram]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "836395",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "37.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "37.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "836397",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet [Ultracet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "37.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "37.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "836408",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG Disintegrating Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316942",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Disintegrating Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "836466",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "836485",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "845314",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ultram]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "845315",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ultram]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "845316",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ultram]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "848768",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.84 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.84",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "848772",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Percodan Reformulated May 2009]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.84 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.84",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "848928",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Endodan Reformulated May 2009]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.84 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.84",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849279",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene Hydrochloride 65 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "65 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "65.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849293",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Propoxyphene Hydrochloride 32.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849295",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / propoxyphene napsylate 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849303",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / propoxyphene napsylate 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849304",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / propoxyphene napsylate 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849306",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 65 MG/ML / Propoxyphene Hydrochloride 6.5 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849329",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849331",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 75 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849455",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene Hydrochloride 100 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Propoxyphene",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849563",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 150 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849564",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 400 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "400 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "400.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "849903",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tramadol hydrochloride 50 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "854140",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 100 MG Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "854142",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 50 MG Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "854144",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 75 MG Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856892",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856894",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Maxidone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856903",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856907",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856908",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 660 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856940",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856942",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hycet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856944",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.67 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.67",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution [Zamicet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.67 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.67",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856962",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856980",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856984",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856991",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Xodol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856992",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856996",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Xodol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "856999",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Norco]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857002",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857004",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Norco]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857005",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Norco]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857076",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.333 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.333 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.333",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857083",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857099",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857105",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857107",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857111",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857113",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857118",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857120",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857121",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857128",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857131",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857134",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857136",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Zydone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857237",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine 30 MG/ML Injectable Solution [Talwin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857370",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Hy-Phen]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857383",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Hydrocodone Bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857391",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857501",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 556 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857510",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857512",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857556",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.34 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.34",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857575",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution [Bromplex HD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.34 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.34",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857734",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.334 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.334",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857830",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Triant-HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.334 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.334",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857839",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857845",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "857851",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858087",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 1.2 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858092",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858095",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858098",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858101",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858770",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858772",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858778",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858780",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858784",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858798",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858838",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet [Vicoprofen]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858876",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858878",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858937",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hyphed]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858939",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hydron EX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858953",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858967",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.9 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Hy-KXP]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.9 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858976",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Prolex DH]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.9 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858991",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859005",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [S-T Forte 2]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859019",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydron KGS]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859027",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859029",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859097",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859099",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [KGS HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859137",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859141",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [B-Tuss]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859143",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Drotuss CP]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859146",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859150",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Hydron CP]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859156",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859162",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "1997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859164",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Poly-Tussin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "1990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "1991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "1992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "1993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "1994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "1995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "1996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "1998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859220",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "1999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.65 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.65",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859222",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution [Relasin HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.65 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.65",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859247",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859315",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859317",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859327",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859329",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution [Hydrofed]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859331",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859366",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859368",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nariz HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859376",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nazarin HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859383",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859939",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859941",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Exetuss HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "859943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Simuc-HD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860138",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution [De-Chlor NX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860151",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860159",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution [De-Chlor MR]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860239",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Hydro GP]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860426",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860446",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Drituss HD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860530",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Su-Tuss HD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860579",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.75 MG/ML / Pseudoephedrine 4.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.75 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.75",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860593",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.334 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.334",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860599",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "860792",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 75 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861447",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861455",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 100 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861459",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 100 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861463",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 50 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861467",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861473",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 50 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861476",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 25 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861479",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 10 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861482",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 75 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861493",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 100 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861494",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 25 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861517",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 100 MG Oral Tablet [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861520",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 100 MG/ML Injectable Solution [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861522",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 50 MG/ML Injectable Solution [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861525",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 50 MG Oral Tablet [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861529",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 50 MG/ML Cartridge [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861578",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 50 MG / Promethazine Hydrochloride 25 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "861617",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 75 MG/ML Cartridge [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863845",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863847",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863848",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863849",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863850",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863851",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863852",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863853",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863854",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863855",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863856",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "863857",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule [Embeda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864706",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864708",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG Oral Tablet [Dolophine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864712",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG Oral Tablet [Methadose]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864714",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864718",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864720",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 5 MG Oral Tablet [Dolophine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864737",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 5 MG Oral Tablet [Methadose]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864751",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 0.4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864761",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864769",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864794",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 25 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864828",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 50 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 40 MG Tablet for Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1861409",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tablet for Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864980",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 40 MG Tablet for Oral Suspension [Methadose]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1861409",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tablet for Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "864984",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "886622",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol Tartrate 2 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "886627",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Butorphanol Tartrate 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "886634",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol Tartrate 10 MG/ML Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891172",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor G]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891874",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891878",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891881",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891883",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891885",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891888",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891890",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "891893",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892297",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "120 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "120.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892299",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "120 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "120.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892342",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892344",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892345",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892349",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892351",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892352",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 60 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892355",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "90 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "90.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892357",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "90 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "90.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892473",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 0.5 MG/ML Injection [Duramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 1 MG/ML Injection [Duramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892494",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892496",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892516",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892531",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "2997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892554",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 100 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "2990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "2991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "2992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "2993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "2994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "2995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "2996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "2998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892556",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "2999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 100 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892560",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 100 MG Extended Release Oral Tablet [MS Contin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG Extended Release Oral Tablet [MS Contin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892579",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892582",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892589",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892596",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892598",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892603",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892625",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892643",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 200 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892645",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 200 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892646",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 200 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892648",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 200 MG Extended Release Oral Tablet [MS Contin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892652",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Morphine Sulfate 25 MG/ML Injection [Infumorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892658",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892660",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Extended Release Oral Tablet [MS Contin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892669",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892672",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "892678",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894780",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894801",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 50 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894803",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 50 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894805",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 60 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894807",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 5 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 60 MG Extended Release Oral Tablet [MS Contin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 80 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894816",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 80 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894911",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 ML Morphine Sulfate 14.3 MG/ML Auto-Injector",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649570",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Auto-Injector",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "14.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "14.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894912",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 10 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894914",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 8 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894918",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Morphine Sulfate 200 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894933",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 150 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894942",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "45 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "45.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894970",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "894986",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 0.4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895014",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895016",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 10 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895022",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 100 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895185",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895194",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 15 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895199",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 2 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895201",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895202",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 20 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895206",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895208",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 3 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "3.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895213",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 30 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895215",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 35 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "35 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "35.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895217",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 5 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895219",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 5 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895221",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 50 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895227",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 50 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895233",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 6 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895238",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895240",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 6.67 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6.67 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.67",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895247",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895248",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 75 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895861",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 25 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895867",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine hydrochloride 40 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895869",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "895871",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 50 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897653",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897655",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 1 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897657",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897658",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 1 MG/ML Oral Solution [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897677",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897687",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897696",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 2 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897698",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 2 MG Oral Tablet [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897702",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 4 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897704",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 4 MG Oral Tablet [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 8 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897712",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 8 MG Oral Tablet [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897730",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 24 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "24.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897737",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897745",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 2 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897747",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 2 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897749",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 3 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "3.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897753",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 4 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897755",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 4 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897756",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897757",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897758",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 4 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "897771",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 1 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "898004",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 1.3 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "898138",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 2.6 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "898139",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 3 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "3.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "898612",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydromorphone Hydrochloride 3 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "3.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "898624",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 30 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "899125",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 2.4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902729",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902733",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet [Exalgo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902736",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902738",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet [Exalgo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902741",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "902743",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet [Exalgo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904870",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.01 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.01 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.01",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904874",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.01 MG/HR Transdermal System [BuTrans]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.01 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.01",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904876",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.02 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.02 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.02",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "3997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904878",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.02 MG/HR Transdermal System [BuTrans]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "3990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "3991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "3992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "3993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "3994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.02 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "3995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.02",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "3996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "3998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904880",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "3999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.005 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.005 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.005",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904882",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.005 MG/HR Transdermal System [BuTrans]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.005 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.005",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977874",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977876",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977894",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977896",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977902",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977904",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977909",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977911",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977915",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977917",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977923",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977925",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977929",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977931",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977935",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Oxymorphone Hydrochloride 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977937",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Oxymorphone Hydrochloride 1 MG/ML Injection [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977939",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977940",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 5 MG Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977942",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 10 MG Oral Tablet [Opana]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977971",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 1.5 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "977974",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone Hydrochloride 5 MG Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Rectal Suppository",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7814",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxymorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "991147",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "991149",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone Hydrochloride 10 MG/ML Oral Solution [Methadose]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6813",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Methadone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "991486",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "992656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "992668",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "992675",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydromet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "992733",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Tussigon]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993755",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993763",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993767",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension [Capital and Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993770",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993781",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993837",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet [Tylenol with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993890",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993892",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet [Tylenol with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993924",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993926",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule [Colrex]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "993943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994043",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994045",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet [Codrix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994046",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994048",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet [Codrix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994049",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994051",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet [Codrix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994226",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994228",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet [Soma Compound with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994237",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994239",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Ascomp]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994277",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fiorinal with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994289",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.27 MG/ML / Codeine Phosphate 1.27 MG/ML / Pseudoephedrine Hydrochloride 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.27 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.27",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994402",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "994404",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Mar-cof BP]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995041",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995043",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995062",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995064",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995065",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995067",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995068",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995070",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995071",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995073",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995077",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995079",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995081",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995082",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995084",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995086",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995093",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995095",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995108",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995110",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995116",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995118",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995120",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995122",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension [Zodryl DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995123",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995125",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995128",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995132",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution [Z Tuss AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995211",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995213",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet [Cotab A]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995214",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995216",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet [Cotab AX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995226",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995438",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.26 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.26",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995440",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [M-Clear WC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.26 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.26",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995441",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995443",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution [Mar-cof CG]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995447",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.8 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995450",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995453",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995455",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet [Maxiphen CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "4997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995476",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "4990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "4991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "4992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "4993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "4994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "4995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "4996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "4998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995478",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "4999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet [Allfen CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995483",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995868",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995872",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheratussin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995936",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet [Brontex]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995940",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution [Brontex]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995956",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheracol with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995983",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995985",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Biotussin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "995993",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Cheratussin DAC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996253",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Nucofed Expectorant]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996263",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine Expectorant]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996462",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Guiatuss AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996481",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Mytussin AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996484",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Robafen AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996512",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 60 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996580",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996584",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution [Zotex C]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996621",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996623",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Ala-Hist AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996627",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996629",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution [Notuss PE]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996636",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Pyrilamine Maleate 3 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996640",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996648",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Pseudodine C]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996650",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Triacin C]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996706",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996708",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Maxiphen CDX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996712",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996714",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996716",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996718",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996720",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996722",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996724",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996725",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996727",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet [Allfen CDX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996728",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996730",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule [Nucofed]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996734",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996736",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "9.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996738",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule [M-Clear WC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "9.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996757",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996976",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 12.8 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 13.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "13.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "13.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996979",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996981",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996982",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996983",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Codeine Phosphate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996988",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 300 MG / Codeine Phosphate 8 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996991",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Codeine Phosphate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996994",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Codeine Phosphate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "996998",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.27 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.27",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997008",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997014",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 0.6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997019",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Kaolin 300 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997160",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997164",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 12.5 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997165",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 12.8 MG / Ibuprofen 200 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997169",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997170",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine sulfate 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997175",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997272",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997280",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Ibuprofen 300 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997284",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 3 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "3.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997285",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997287",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine sulfate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997289",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 30 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997296",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine sulfate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997301",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997303",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 60 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "997398",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "998212",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 2 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "998213",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 4 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "999729",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 250 MG / tramadol hydrochloride 50 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010600",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010603",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010604",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8 MG / Naloxone 2 MG Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010606",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8 MG / Naloxone 2 MG Oral Strip [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010608",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1010609",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1012727",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Carbinoxamine maleate 0.4 MG/ML / HYDROcodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151137",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Liquid Product",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "HYDROcodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1014599",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1014615",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1014632",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1037259",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1042693",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1043650",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Poly Hist NC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1044427",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.667 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.667",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049214",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049216",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Endocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049221",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049223",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Endocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049225",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049227",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Endocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049233",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049251",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049260",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "5997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049267",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 400 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "5990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "5991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "5992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "5993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "5994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "5995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "5996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "5998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049270",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "5999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049502",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049504",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049543",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049545",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049557",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 160 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "160 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "160.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049563",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049565",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049576",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049580",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049582",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution [Roxicet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049584",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049586",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049589",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Ibuprofen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049593",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049595",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049599",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049601",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet [Oxycontin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049604",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049611",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049613",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 15 MG Oral Tablet [Roxicodone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049615",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049618",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049620",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 30 MG Oral Tablet [Roxicodone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049621",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049623",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicodone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049625",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049635",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049637",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049640",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049642",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049647",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049650",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049651",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049655",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Xolox]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049658",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049683",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049686",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049691",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049696",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049709",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049717",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 10 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049719",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049720",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 10 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049721",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 20 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1049727",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1050409",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 20 MG/ML Oral Solution [Oxyfast]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1050490",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053647",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053651",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053652",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053654",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053655",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053657",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053658",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053660",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053661",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053663",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053664",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1053666",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG Sublingual Tablet [Abstral]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1086310",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1086926",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Relcof C]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.26 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.26",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1087389",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule [TussiCaps]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1087427",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule [TussiCaps]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1087459",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1087463",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension [Tussionex]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088951",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088953",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088963",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088970",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088975",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1088977",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089021",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089023",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089025",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089027",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089028",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089030",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension [Zodryl DEC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089055",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089057",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089058",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089060",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089061",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089063",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089070",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1089072",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1098906",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1099711",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG / Triprolidine Hydrochloride 4 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1112220",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1112224",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Zutripro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113048",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113050",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Notuss-NXD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113051",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113053",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Notuss-NX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113313",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Oral Tablet [Oxecta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113314",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 7.5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "6997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113316",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxecta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "6990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "6991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "6992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "6993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "6994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "6995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "6996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "6998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113417",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "6999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113437",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine DH]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1113998",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114002",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution [Codar AR]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114026",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114030",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Codar GF]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114110",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114334",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114338",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Rezira]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1114878",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1115573",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG/ACTUAT Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1115575",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG/ACTUAT Nasal Spray [Lazanda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1115577",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG/ACTUAT Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1115579",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG/ACTUAT Nasal Spray [Lazanda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1145972",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Codar D]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1147395",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1147709",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution [Lortuss EX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148478",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148482",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule [ConZip]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148485",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148487",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule [ConZip]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148491",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule [ConZip]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148797",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148800",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 150 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148803",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 200 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148807",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 250 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "250 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "250.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1148809",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 50 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1149367",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 100 MG Extended Release Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1149370",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 150 MG Extended Release Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1149373",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 200 MG Extended Release Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1149376",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 250 MG Extended Release Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "250 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "250.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1149378",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR tapentadol 50 MG Extended Release Oral Tablet [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1190201",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1190284",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule [Avinza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "45 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "45.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1190580",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1190587",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution [M-End Max D]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1190785",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Atropine Sulfate 0.6 MG/ML / Morphine Sulfate 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1232113",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 15 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1233685",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.003 MG/ML / Ropivacaine hydrochloride 2.5 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.003 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1233686",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 1 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.004 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.004",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1233687",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 2 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.004 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.004",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1233700",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 0.01 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.01 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.01",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234871",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234872",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234941",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234957",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [ColdCough PD]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234976",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Synalgos-DC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234978",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 712.8 MG / Caffeine 60 MG / dihydrocodeine bitartrate 32 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234990",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1234999",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / dihydrocodeine bitartrate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1235009",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / dihydrocodeine bitartrate 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1235011",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / dihydrocodeine bitartrate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1235862",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236113",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236115",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Poly Tussin EX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236179",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 120 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "120 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "120.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236181",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236182",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236184",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 40 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236186",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 50 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236188",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236190",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 90 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "90 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "90.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1236239",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine bitartrate 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237050",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG/ACTUAT Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237055",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.1 MG/ACTUAT Mucosal Spray [Subsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.1 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237057",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG/ACTUAT Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237059",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.2 MG/ACTUAT Mucosal Spray [Subsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.2 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237060",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG/ACTUAT Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237062",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.4 MG/ACTUAT Mucosal Spray [Subsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237064",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG/ACTUAT Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237066",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.6 MG/ACTUAT Mucosal Spray [Subsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237068",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG/ACTUAT Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1237070",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.8 MG/ACTUAT Mucosal Spray [Subsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "346163",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Mucosal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1242106",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 100 MG/ML Cartridge [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1242503",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 25 MG/ML Cartridge [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1242558",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Statuss Green Reformulated Jan 2012]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1244754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1244921",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution [M-End PE]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.27 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.27",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1248039",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Entuss-D Liquid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1248040",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1248044",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Nalex Expectorant]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1248046",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Vanacon]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1248115",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR tramadol hydrochloride 150 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1294356",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Bromodiphenhydramine hydrochloride 2.5 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1294380",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1294382",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1294383",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1297584",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension [Dytan-HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1297649",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine sulfate 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1302739",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol 10 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1302741",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol 10 MG/ML Injectable Solution [Dolorex Solution]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303729",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 130 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "130 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "130.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303731",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 130 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "130 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "130.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303733",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 150 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303736",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 40 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303738",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 40 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303740",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 70 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "70 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "70.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "7997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1303742",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine Sulfate 70 MG Extended Release Oral Capsule [Kadian]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "7990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "7991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "7992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "7993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "7994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "70 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "7995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "70.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "7996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "7998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1306898",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "7999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1306900",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet [Exalgo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "32 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "32.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1307056",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 4 MG / Naloxone 1 MG Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1307058",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 4 MG / Naloxone 1 MG Oral Strip [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1307061",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 12 MG / Naloxone 3 MG Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1307063",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 12 MG / Naloxone 3 MG Oral Strip [Suboxone]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "704866",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Strip",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "12.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1308438",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1308440",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Nalex AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1310202",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1310212",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Vicodin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1310270",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Vicodin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1310927",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol 10 MG/ML Injectable Solution [Butorphic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1313294",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356315",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 20 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356319",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol 20 MG/ML Oral Solution [Nucynta]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "787390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "tapentadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356797",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356799",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356800",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356802",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet [BroveX CB]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356806",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356807",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356809",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet [BroveX CB]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1356835",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.6 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1357402",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylpropanolamine Hydrochloride 2.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1357940",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1357942",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Zotex HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1358753",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1366873",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1366875",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [P-V-Tussin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1366879",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [P-V-Tussin Syrup]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1368072",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Tusnel C]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1372265",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1372873",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Vituz]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1424295",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Chlorpheniramine Maleate 2 MG / Codeine Phosphate 8 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1424297",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 6 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1431076",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1431083",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1431102",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5.7 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1431104",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5.7 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1431286",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1432969",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.015 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.015 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.015",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1432971",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.015 MG/HR Transdermal System [BuTrans]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.015 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.015",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1433251",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1433802",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fioricet with Codeine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1440003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.8 MG/ML / Dexchlorpheniramine maleate 0.2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1442445",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.667 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.667",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1442790",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 5 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1487288",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Endocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1487611",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 50 MG/ML Topical Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316986",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Topical Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1487616",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 50 MG/ML Topical Solution [Recuvyra]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316986",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Topical Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1488634",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316950",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1488639",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension [Animalgesics]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316950",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1489991",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol 10 MG/ML Injectable Solution [Torbugesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1491832",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1491834",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet [Xartemis]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1492671",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lorcet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1492673",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lorcet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1492675",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lorcet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1495472",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1495474",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1495476",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1535979",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.65 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.65",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1535981",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution [Z-Cof HC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.65 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.65",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1536457",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 8 MG Effervescent Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1535727",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Effervescent Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1536459",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 500 MG / Codeine Phosphate 30 MG Effervescent Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1535727",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Effervescent Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1537116",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Primlev]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1537120",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Primlev]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1537122",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Primlev]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1541630",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Brompheniramine Maleate 0.8 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542390",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542396",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film [Bunavail]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.1 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.1",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542981",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Verdrocet]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542988",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Xylon]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542997",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.0075 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0075 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1542999",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "168 HR Buprenorphine 0.0075 MG/HR Transdermal System [BuTrans]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0075 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1544851",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1544853",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film [Bunavail]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1544854",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1544856",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film [Bunavail]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "6.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "6.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1545903",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naloxone Hydrochloride 10 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1545907",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naloxone Hydrochloride 20 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1545910",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1546089",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Targiniq]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1547607",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Lortuss EX]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1594650",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 1.8 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1594655",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 1.8 MG/ML Injectable Solution [Simbadol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.8",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595214",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Ninjacof XG]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.6 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595730",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595736",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595740",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595742",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595746",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595748",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595752",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595758",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595760",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595764",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "8997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595766",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "8990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "8991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "8992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "8993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "8994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "8995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "8996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "8998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595770",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "8999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "120 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "120.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1595772",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet [Hysingla]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "120 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "120.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1596108",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316965",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1597568",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "11.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "11.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1597570",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "11.4 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "11.4",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1597573",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1597575",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1598284",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Obredon]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1603495",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.0375 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0375 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0375",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1603498",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.0625 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0625 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0625",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1603501",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "72 HR Fentanyl 0.0875 MG/HR Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.0875 MG/HR",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.0875",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/HR",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1650982",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Flowtuss]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1651558",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1651564",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hycofenix]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1652087",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1652093",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension [Tuzistra]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316946",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Suspension",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1655032",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Buprenorphine 0.3 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1655058",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 150 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "150 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "150.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1655060",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine Hydrochloride 75 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "75.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1661319",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1661325",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution [Histex AC]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1664448",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 5 MG Oral Tablet [Oxaydo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1664543",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Chlorpheniramine Maleate 8 MG / Codeine Phosphate 54.3 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "54.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "54.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1664634",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxaydo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "7.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "7.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665685",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 100 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665687",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 100 MG/ML Injection [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665690",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 ML Meperidine Hydrochloride 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665691",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665697",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665698",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665699",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 ML Meperidine Hydrochloride 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665700",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665701",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Meperidine Hydrochloride 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1665702",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "6754",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Meperidine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1666338",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1666385",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2.9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1666831",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.04 MG Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.04 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.04",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1666837",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.04 MG Transdermal System [Ionsys]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316987",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Transdermal System",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.04 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.04",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716057",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.15 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.15",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716063",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.15 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.15",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716065",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.3 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716067",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.3 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716069",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.45 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.45 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.45",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716071",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.45 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.45 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.45",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716073",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.6 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.6 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.6 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.6",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716077",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.075 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.075 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716079",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.075 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.075 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.075",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716081",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.75 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.75",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716083",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.75 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.75 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.75",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716086",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.9 MG Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1716090",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.9 MG Buccal Film [Belbuca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "858080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buccal Film",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.9",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724276",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 2 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9537",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724338",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9531",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9532",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9534",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9535",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9536",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9547",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9538",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724340",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9539",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 ML Hydromorphone Hydrochloride 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9542",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9543",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9545",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9546",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9557",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724341",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9549",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 ML Hydromorphone Hydrochloride 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9550",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9554",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9567",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724352",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 250 MG Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9560",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9561",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9562",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9563",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9564",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "250 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9565",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "250.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9566",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9577",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724354",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone Hydrochloride 250 MG Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9570",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9571",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9572",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9573",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9574",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "250 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9575",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "250.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9576",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9587",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724356",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9580",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9581",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9582",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9583",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9584",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9585",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9586",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9597",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724358",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9590",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9591",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9592",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9593",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9594",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9595",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9596",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9607",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724359",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9600",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9601",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9602",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9603",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9604",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9605",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9606",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9617",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724383",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 1 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9610",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9611",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9612",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9613",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9614",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9615",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9616",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9627",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1724644",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 2 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9620",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9621",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9622",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9623",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9624",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9625",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9626",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9637",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728351",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Butorphanol Tartrate 2 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9630",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9631",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9632",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9633",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9634",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9635",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9636",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9647",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728355",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Butorphanol Tartrate 2 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9640",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9641",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9642",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9643",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9644",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9645",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9646",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9657",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728783",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 0.5 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9650",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9651",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9652",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9653",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9654",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9655",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9656",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9667",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728784",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9660",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9661",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9662",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9663",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9664",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9665",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9666",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9677",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728789",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 ML Morphine Sulfate 0.5 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9670",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9671",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9672",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9673",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9674",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9675",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9676",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9687",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728791",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Morphine Sulfate 0.5 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9680",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9681",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9682",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9683",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9684",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9685",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9686",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9697",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728792",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9690",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9691",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9692",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9693",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9694",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9695",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9696",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9707",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728800",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9700",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9701",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9702",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9703",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9704",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9705",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9706",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9717",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728801",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9710",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9711",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9712",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9713",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9714",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9715",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9716",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9727",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728805",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Morphine Sulfate 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9720",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9721",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9722",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9723",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9724",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9725",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9726",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9737",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728806",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9730",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9731",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9732",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9733",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9734",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9735",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9736",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9747",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1728999",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 ML Morphine Sulfate 1 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9740",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9741",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9742",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9743",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9744",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9745",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9746",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9757",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1729197",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 2 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9750",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9751",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9752",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9753",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9754",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9755",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9756",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9767",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1729320",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG/ACTUAT Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9760",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9761",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9762",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9763",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9764",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9765",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9766",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9777",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1729322",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl 0.3 MG/ACTUAT Nasal Spray [Lazanda]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9770",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "126542",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9771",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nasal Spray",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9772",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9773",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9774",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.3 MG/ACTUAT",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9775",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.3",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9776",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ACTUAT",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9787",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731517",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Morphine Sulfate 25 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9780",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9781",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9782",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9783",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9784",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9785",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9786",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9797",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9788",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731520",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9789",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 ML Morphine Sulfate 25 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9790",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9791",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9792",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9793",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9794",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9795",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9796",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9807",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9798",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731522",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9799",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Morphine Sulfate 25 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9800",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9801",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9802",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9803",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9804",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "25 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9805",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "25.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9806",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9817",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9808",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731530",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9809",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 15 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9810",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9811",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9812",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9813",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9814",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9815",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9816",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9827",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9818",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731537",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9819",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Morphine Sulfate 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9820",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9821",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9822",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9823",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9824",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9825",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9826",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9837",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9828",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731545",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9829",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 ML Morphine Sulfate 50 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9830",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9831",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9832",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9833",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9834",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9835",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9836",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9847",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9838",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731993",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9839",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9840",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9841",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9842",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9843",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9844",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9845",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9846",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9857",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9848",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731995",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9849",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 10 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9850",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9851",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9852",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9853",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9854",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9855",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9856",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9867",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9858",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731998",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9859",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Morphine Sulfate 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9860",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9861",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9862",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9863",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9864",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9865",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9866",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9877",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9868",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1731999",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9869",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Morphine Sulfate 10 MG/ML Injection [Infumorph]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9870",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9871",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9872",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9873",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9874",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9875",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9876",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9887",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9878",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9879",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 8 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9880",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9881",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9882",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9883",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9884",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9885",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9886",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9897",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9888",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732006",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9889",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 4 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9890",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9891",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9892",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9893",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9894",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9895",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9896",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9907",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9898",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732011",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9899",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 8 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9900",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9901",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9902",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9903",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9904",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "8 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9905",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "8.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9906",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9917",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9908",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732014",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9909",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 4 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9910",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9911",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9912",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9913",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9914",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9915",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9916",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9927",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9918",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732136",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9919",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 5 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9920",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9921",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9922",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9923",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9924",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9925",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9926",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9937",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9928",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1732138",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9929",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 ML Morphine Sulfate 5 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9930",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9931",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9932",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9933",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9934",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9935",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9936",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9947",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9938",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1733080",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9939",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Morphine Sulfate 15 MG/ML Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9940",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649572",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9941",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Cartridge",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9942",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9943",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9944",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9945",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9946",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9957",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9948",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735003",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9949",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Fentanyl 0.05 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9950",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9951",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9952",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9953",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9954",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9955",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9956",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9967",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9958",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735006",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9959",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Fentanyl 0.05 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9960",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9961",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9962",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9963",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9964",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9965",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9966",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9977",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9968",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9969",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 ML Fentanyl 0.05 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9970",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9971",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9972",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9973",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9974",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9975",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9976",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9987",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9978",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735008",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9979",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Fentanyl 0.05 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9980",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9981",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9982",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9983",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9984",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9985",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9986",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "9997",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9988",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735013",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9989",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 ML Fentanyl 0.05 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "9990",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "9991",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "9992",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "9993",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "9994",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "9995",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "9996",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10007",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "9998",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735057",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "9999",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10000",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10001",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10002",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10003",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10004",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10005",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10006",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10017",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10008",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735060",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10009",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10010",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10011",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10012",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10013",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10014",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10015",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10016",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10027",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10018",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735062",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10019",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10020",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10021",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10022",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10023",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10024",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10025",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10026",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10037",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10028",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1735065",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10029",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10030",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10031",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10032",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "4337",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10033",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Fentanyl",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10034",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.05 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10035",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.05",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10036",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10047",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10038",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1745881",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10039",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Morphabond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10040",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10041",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10042",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10043",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10044",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10045",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10046",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10057",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10048",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1745886",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10049",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet [Morphabond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10050",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10051",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10052",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10053",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10054",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10055",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10056",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10067",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10058",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1745889",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10059",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Morphabond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10060",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10061",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10062",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10063",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10064",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10065",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10066",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10077",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10068",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1745892",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10069",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Morphabond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10070",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10071",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10072",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10073",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10074",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10075",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10076",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10087",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10078",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1790527",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10079",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10080",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10081",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10082",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10083",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10084",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10085",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "9.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10086",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10097",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10088",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1790533",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10089",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule [Xtampza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10090",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10091",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10092",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10093",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10094",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "9 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10095",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "9.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10096",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10107",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10098",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791558",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10099",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10100",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10101",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10102",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10103",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10104",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "13.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10105",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "13.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10106",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10117",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10108",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791560",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10109",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule [Xtampza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10110",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10111",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10112",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10113",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10114",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "13.5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10115",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "13.5",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10116",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10127",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10118",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791567",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10119",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10120",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10121",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10122",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10123",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10124",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "18 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10125",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "18.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10126",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10137",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10128",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791569",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10129",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule [Xtampza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10130",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10131",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10132",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10133",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10134",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "18 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10135",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "18.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10136",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10147",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10138",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10139",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10140",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10141",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10142",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10143",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10144",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "27 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10145",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "27.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10146",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10157",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10148",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791576",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10149",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule [Xtampza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10150",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10151",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10152",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10153",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10154",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "27 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10155",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "27.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10156",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10167",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10158",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791580",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10159",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10160",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10161",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10162",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10163",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10164",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "36 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10165",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "36.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10166",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10177",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10168",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1791582",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10169",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule [Xtampza]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10170",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10171",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10172",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10173",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10174",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "36 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10175",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "36.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10176",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10187",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10178",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1792707",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10179",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10180",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316968",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10181",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10182",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "2670",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10183",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Codeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10184",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10185",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10186",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10197",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10188",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1797650",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10189",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 74.2 MG Drug Implant",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10190",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "657710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10191",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Drug Implant",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10192",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10193",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10194",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "74.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10195",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "74.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10196",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10207",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10198",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1797655",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10199",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 74.2 MG Drug Implant [Probuphine]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10200",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "657710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10201",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Drug Implant",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10202",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10203",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10204",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "74.2 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10205",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "74.2",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10206",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10217",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10208",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806701",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10209",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10210",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10211",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10212",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10213",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10214",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10215",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10216",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10227",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10218",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806707",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10219",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule [Troxyca]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10220",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10221",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10222",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10223",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10224",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10225",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10226",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10237",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10228",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806710",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10229",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 2.4 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10230",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10231",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10232",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10233",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10234",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10235",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10236",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10247",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10238",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806716",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10239",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 3.6 MG / Oxycodone Hydrochloride 30 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10240",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10241",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10242",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10243",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10244",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10245",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10246",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10257",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10248",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806722",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10249",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 4.8 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10250",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10251",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10252",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10253",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10254",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10255",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10256",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10267",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10258",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806728",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10259",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 7.2 MG / Oxycodone Hydrochloride 60 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10260",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10261",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10262",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10263",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10264",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10265",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10266",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10277",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10268",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1806734",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10269",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Naltrexone hydrochloride 9.6 MG / Oxycodone Hydrochloride 80 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10270",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10271",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10272",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10273",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10274",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10275",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10276",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10287",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10278",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1809204",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10279",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol Tartrate 2 MG/ML Injectable Solution [Torbugesic]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10280",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10281",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10282",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10283",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10284",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10285",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10286",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10297",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10288",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1811473",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10289",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Pentazocine 30 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10290",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10291",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10292",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10293",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10294",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10295",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10296",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10307",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10298",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1811475",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10299",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Pentazocine 30 MG/ML Injection [Talwin]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10300",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1649574",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10301",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10302",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "8001",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10303",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Pentazocine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10304",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10305",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10306",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10317",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10308",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1812164",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10309",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Acetaminophen 325 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10310",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10311",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10312",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "23088",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10313",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "dihydrocodeine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10314",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "16 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10315",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "16.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10316",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10327",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10318",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860127",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10319",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10320",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10321",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10322",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10323",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10324",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10325",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10326",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10337",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10328",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860129",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10329",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10330",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10331",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10332",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10333",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10334",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10335",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10336",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10347",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10338",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860137",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10339",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10340",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10341",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10342",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10343",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10344",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10345",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10346",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10357",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10348",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860148",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10349",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10350",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10351",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10352",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10353",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10354",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "80 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10355",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "80.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10356",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10367",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10358",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860151",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10359",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10360",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10361",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10362",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10363",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10364",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10365",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10366",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10377",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10368",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860154",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10369",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10370",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10371",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10372",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10373",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10374",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10375",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10376",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10387",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10378",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860157",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10379",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10380",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10381",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10382",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10383",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10384",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10385",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10386",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10397",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10388",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860491",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10389",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10390",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10391",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10392",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10393",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10394",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10395",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10396",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10407",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10398",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860492",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10399",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10400",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10401",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10402",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10403",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10404",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10405",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10406",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10417",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10408",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860493",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10409",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10410",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10411",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10412",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10413",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10414",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10415",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10416",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10427",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10418",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860494",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10419",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10420",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10421",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10422",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10423",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10424",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10425",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10426",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10437",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10428",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860495",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10429",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10430",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10431",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10432",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10433",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10434",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10435",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10436",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10447",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10438",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860496",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10439",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10440",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10441",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10442",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10443",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10444",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10445",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10446",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10457",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10448",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860497",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10449",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10450",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10451",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10452",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10453",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10454",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10455",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10456",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10467",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10458",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860498",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10459",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10460",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10461",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10462",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10463",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10464",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10465",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10466",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10477",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10468",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860499",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10469",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10470",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10471",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10472",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10473",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10474",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10475",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10476",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10487",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10478",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860500",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10479",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10480",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10481",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10482",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10483",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10484",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "40 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10485",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "40.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10486",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10497",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10488",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860501",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10489",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10490",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10491",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10492",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10493",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10494",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10495",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10496",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10507",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10498",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1860502",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10499",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule [Zohydro]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10500",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316943",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10501",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Capsule",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10502",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "5489",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10503",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydrocodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10504",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "50 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10505",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "50.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10506",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10517",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10508",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1864412",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10509",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10510",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10511",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10512",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10513",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10514",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10515",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10516",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10527",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10518",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1864414",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10519",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet [Zubsolv]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10520",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317007",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10521",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Sublingual Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10522",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1819",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10523",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Buprenorphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10524",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.7 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10525",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "0.7",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10526",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10536",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10528",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1866543",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10529",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Nalbuphine Hydrochloride 10 MG/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10530",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151126",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10531",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7238",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10532",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10533",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10534",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10535",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10545",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10537",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1866551",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10538",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Nalbuphine Hydrochloride 20 M/ML Injection",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10539",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151126",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10540",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7238",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10541",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10542",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10543",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10544",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10554",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10546",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904415",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10547",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine Hydrochloride 10MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10548",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151126",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10549",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7238",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10550",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10551",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10552",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10553",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10563",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10555",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "904440",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10556",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine Hydrochloride 20 MG/ML Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10557",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1151126",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10558",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7238",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10559",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Nalbuphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10560",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "20 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10561",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "20.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10562",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10573",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10564",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871434",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10565",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10566",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10567",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10568",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10569",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10570",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10571",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10572",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10583",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10574",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871440",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10575",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Arymo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10576",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10577",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10578",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10579",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10580",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10581",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10582",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10593",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10584",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871441",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10585",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10586",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10587",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10588",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10589",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10590",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10591",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10592",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10603",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10594",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871443",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10595",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Arymo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10596",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10597",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10598",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10599",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10600",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10601",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10602",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10613",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10604",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871444",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10605",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10606",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10607",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10608",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10609",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10610",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10611",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10612",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10623",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10614",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1871446",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10615",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Arymo]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10616",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10617",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10618",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10619",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10620",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "60 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10621",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "60.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10622",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10633",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10624",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872234",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10625",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10626",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10627",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10628",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7052",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10629",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Morphine",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10630",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10631",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10632",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10643",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10634",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872265",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10635",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10636",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10637",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10638",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10639",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10640",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10641",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10642",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10653",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10644",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872269",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10645",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10646",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10647",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10648",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10649",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10650",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "2 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10651",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "2.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10652",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10663",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10654",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872271",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10655",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10656",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10657",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10658",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10659",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10660",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10661",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10662",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10673",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10664",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872272",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10665",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10666",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10667",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10668",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10669",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10670",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "4 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10671",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "4.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10672",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10683",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10674",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1872752",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10675",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10676",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "721656",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10677",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Prefilled Syringe",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10678",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "3423",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10679",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Hydromorphone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10680",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "1 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10681",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "1.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10682",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10693",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10684",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944529",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10685",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10686",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10687",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10688",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10689",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10690",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10691",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10692",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10703",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10694",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944535",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10695",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet [Roxybond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10696",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10697",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10698",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10699",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10700",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "15 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10701",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "15.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10702",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10713",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10704",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944538",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10705",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10706",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10707",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10708",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10709",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10710",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10711",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10712",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10723",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10714",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944540",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10715",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet [Roxybond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10716",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10717",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10718",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10719",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10720",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "30 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10721",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "30.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10722",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10733",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10724",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10725",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10726",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10727",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10728",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10729",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10730",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10731",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10732",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10743",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10734",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1944543",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10735",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet [Roxybond]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10736",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "317541",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10737",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10738",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "7804",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10739",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Oxycodone",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10740",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "5 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10741",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "5.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10742",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10753",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10744",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1946525",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10745",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10746",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10747",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10748",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10749",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10750",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "300 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10751",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "300.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10752",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10763",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10754",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1946527",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10755",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10756",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10757",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10758",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10759",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10760",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "200 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10761",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "200.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10762",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10773",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10764",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1946529",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10765",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10766",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316945",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10767",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Extended Release Oral Tablet",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10768",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "10689",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10769",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Tramadol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10770",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "100 MG",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10771",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "100.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10772",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG",
                            "type": "Literal"
                          }
                        }
                      ]
                    },
                    {
                      "localId": "10783",
                      "type": "Tuple",
                      "element": [
                        {
                          "name": "drugCode",
                          "value": {
                            "localId": "10774",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1947138",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "drugName",
                          "value": {
                            "localId": "10775",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol 10 MG/ML Injectable Solution [Torphaject]",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormCode",
                          "value": {
                            "localId": "10776",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "316949",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "doseFormName",
                          "value": {
                            "localId": "10777",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Injectable Solution",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientCode",
                          "value": {
                            "localId": "10778",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1841",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "ingredientName",
                          "value": {
                            "localId": "10779",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "Butorphanol",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strength",
                          "value": {
                            "localId": "10780",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "10 MG/ML",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthValue",
                          "value": {
                            "localId": "10781",
                            "valueType": "{urn:hl7-org:elm-types:r1}Decimal",
                            "value": "10.0",
                            "type": "Literal"
                          }
                        },
                        {
                          "name": "strengthUnit",
                          "value": {
                            "localId": "10782",
                            "valueType": "{urn:hl7-org:elm-types:r1}String",
                            "value": "MG/ML",
                            "type": "Literal"
                          }
                        }
                      ]
                    }
                  ]
                }
              }
            ]
          }
        }
      },
      "elm_annotations": {
        "statements": [
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"DrugIngredients\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 197696"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.075 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "12"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "14"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "16"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.075 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "17"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "19"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "20"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 197873"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levorphanol 2 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "22"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "24"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6378"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "26"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "27"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "29"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "30"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 198402"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.5 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "32"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "34"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "36"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "37"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "39"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "40"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 198403"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 2.5 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "42"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "44"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "46"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "47"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "49"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "50"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 199400"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine 50 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "52"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "54"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "56"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "57"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "59"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "60"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 199789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "62"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "64"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "66"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "67"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "69"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "70"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 205533"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Buprenorphine 0.3 MG/ML Injection [Buprenex]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "72"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "74"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "76"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "77"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "79"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "80"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 211354"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet [Talacen]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "82"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "84"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "86"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "87"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "89"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "90"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 238129"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Buprenorphine 0.3 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "92"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "94"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "96"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "97"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "99"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "100"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 238133"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 30 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "102"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "107"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "110"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 245134"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.025 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "112"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.025 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "117"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.025"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "120"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 245135"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.05 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "122"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "127"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "130"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 245136"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.1 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "132"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "137"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "140"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 246474"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.2 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "142"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "147"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "150"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 250426"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.4 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "152"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "157"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "160"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 250485"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 25 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "162"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "167"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "170"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 250486"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 50 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "172"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "177"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "180"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 250877"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 50 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "182"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "187"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "190"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261106"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "192"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "197"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "200"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261107"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "202"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "207"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "210"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261108"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "212"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "217"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "220"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261109"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.2 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "222"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "227"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "230"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261110"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.6 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "232"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "237"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "240"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261184"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.025 MG/HR Transdermal System [Duragesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "242"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.025 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "247"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.025"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "250"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261185"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.05 MG/HR Transdermal System [Duragesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "252"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "257"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "260"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 261186"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.075 MG/HR Transdermal System [Duragesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "262"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.075 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "267"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "270"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 262071"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.1 MG/HR Transdermal System [Duragesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "272"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "277"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "280"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 262219"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Oral Lozenge [Actiq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "282"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "287"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "290"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 310293"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.2 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "292"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "297"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "300"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 310294"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.6 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "302"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "307"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "310"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 310295"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "312"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "317"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "320"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 310296"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "322"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "327"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "330"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 310297"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "332"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "337"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "340"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 311297"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levomethadyl 10 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "342"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 237005"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levomethadyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "347"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "350"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 311300"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levorphanol 2 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "352"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6378"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Levorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "357"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "360"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 312104"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Belladonna Alkaloids 16.2 MG/Opium 30 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "362"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151127"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7676"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Opium'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "365"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "368"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "369"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 312107"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Belladonna Alkaloids 16.2 MG/Opium 60 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151127"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7676"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Opium'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "375"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "377"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "378"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 830196"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'opium tincture 100 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "380"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151131"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7676"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Opium'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 312288"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 312289"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Naloxone 0.5 MG / Pentazocine 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 313992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 313993"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Lozenge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 351264"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 351265"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 351266"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 351267"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 388506"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Buprenorphine 0.07 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.07 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.07"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 388507"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Buprenorphine 0.0525 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0525 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0525"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 388508"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Buprenorphine 0.035 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.035 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.035"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 577057"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.012 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.012 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.012"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 583490"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.012 MG/HR Transdermal System [Duragesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.012 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.012"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 637540"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 637540"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.38 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.38"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668363"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668364"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668365"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668366"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668367"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668622"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG Buccal Tablet [Fentora]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668624"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Buccal Tablet [Fentora]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668626"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Buccal Tablet [Fentora]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668628"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Buccal Tablet [Fentora]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 668630"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Buccal Tablet [Fentora]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 706898"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 970789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 724614"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.19 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.19"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 724614"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.25 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.25"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 727759"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Fentanyl 0.05 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 825409"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 825411"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 825413"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 75 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 827748"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'propoxyphene napsylate 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 827750"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'propoxyphene napsylate 100 MG Oral Tablet [Darvon-N]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 827751"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 828576"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 828581"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Propoxyphene Hydrochloride 65 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'65 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 65.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 828585"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 32 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 828594"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 65 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'65 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 65.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833036"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 750 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833709"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ryzolt]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833711"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833712"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ryzolt]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833713"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 833714"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ryzolt]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 835603"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 835605"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG Oral Tablet [Ultram]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 836395"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'37.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 37.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 836397"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet [Ultracet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'37.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 37.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 836408"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG Disintegrating Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316942"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Disintegrating Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 836466"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 836485"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 845314"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ultram]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 845315"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ultram]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 845316"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ultram]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 848768"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.84 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.84"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 848772"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Percodan Reformulated May 2009]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.84 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.84"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 848928"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Endodan Reformulated May 2009]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.84 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.84"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849279"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene Hydrochloride 65 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'65 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 65.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849293"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Propoxyphene Hydrochloride 32.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849295"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / propoxyphene napsylate 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849303"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849304"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849306"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 65 MG/ML / Propoxyphene Hydrochloride 6.5 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849329"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849331"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 75 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849455"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene Hydrochloride 100 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Propoxyphene'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849563"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 150 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849564"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 400 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'400 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 400.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 849903"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tramadol hydrochloride 50 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 854140"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 100 MG Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 854142"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 50 MG Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 854144"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 75 MG Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856892"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856894"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Maxidone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856903"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856907"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856908"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 660 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856940"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856942"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hycet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856944"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.67 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.67"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution [Zamicet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.67 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.67"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856962"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856980"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856984"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856991"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Xodol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856992"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856996"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Xodol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 856999"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Norco]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857002"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857004"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Norco]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857005"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Norco]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857076"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.333 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.333 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.333"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857083"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857099"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857105"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857107"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857111"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857113"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857118"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857120"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857121"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857128"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857131"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857134"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857136"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Zydone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857237"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine 30 MG/ML Injectable Solution [Talwin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857370"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Hy-Phen]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857383"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Hydrocodone Bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857391"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857501"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 556 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857510"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857512"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857556"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.34 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.34"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857575"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution [Bromplex HD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.34 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.34"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857734"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.334 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.334"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857830"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Triant-HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.334 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.334"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857839"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857845"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 857851"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858087"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 1.2 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858092"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858095"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858098"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858101"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858770"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858772"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858778"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858780"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858784"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858798"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858838"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet [Vicoprofen]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858876"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858878"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858937"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hyphed]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858939"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hydron EX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858953"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858967"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.9 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Hy-KXP]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.9 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858976"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Prolex DH]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.9 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 858991"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859005"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [S-T Forte 2]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859019"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydron KGS]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859027"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859029"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859097"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859099"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [KGS HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859137"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859141"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [B-Tuss]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859143"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Drotuss CP]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859146"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859150"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Hydron CP]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859156"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859162"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859164"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Poly-Tussin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "1997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859220"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "1999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.65 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.65"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859222"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution [Relasin HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.65 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.65"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859247"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859315"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859317"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859327"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859329"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution [Hydrofed]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859331"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859366"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859368"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nariz HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859376"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nazarin HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859383"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859939"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859941"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Exetuss HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 859943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Simuc-HD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860138"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution [De-Chlor NX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860151"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860159"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution [De-Chlor MR]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860239"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Hydro GP]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860426"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860446"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Drituss HD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860530"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Su-Tuss HD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860579"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.75 MG/ML / Pseudoephedrine 4.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.75 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.75"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860593"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.334 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.334"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860599"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 860792"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 75 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861447"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861455"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 100 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861459"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 100 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861463"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 50 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861467"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861473"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 50 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861476"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 25 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861479"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 10 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861482"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 75 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861493"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 100 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861494"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 25 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861517"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 100 MG Oral Tablet [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861520"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 100 MG/ML Injectable Solution [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861522"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 50 MG/ML Injectable Solution [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861525"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 50 MG Oral Tablet [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861529"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 50 MG/ML Cartridge [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861578"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 50 MG / Promethazine Hydrochloride 25 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 861617"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 75 MG/ML Cartridge [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863845"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863847"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863848"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863849"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863850"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863851"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863852"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863853"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863854"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863855"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863856"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 863857"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule [Embeda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864706"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864708"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG Oral Tablet [Dolophine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864712"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG Oral Tablet [Methadose]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864714"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864718"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864720"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 5 MG Oral Tablet [Dolophine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864737"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 5 MG Oral Tablet [Methadose]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864751"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 0.4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864761"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864769"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864794"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 25 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864828"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 50 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 40 MG Tablet for Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1861409"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tablet for Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864980"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 40 MG Tablet for Oral Suspension [Methadose]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1861409"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tablet for Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 864984"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 886622"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol Tartrate 2 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 886627"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Butorphanol Tartrate 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 886634"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol Tartrate 10 MG/ML Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891172"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor G]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891874"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891878"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891881"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891883"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891885"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891888"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891890"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 891893"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892297"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'120 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 120.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892299"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'120 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 120.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892342"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892344"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892345"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892349"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892351"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892352"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 60 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892355"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'90 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 90.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892357"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'90 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 90.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892473"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 0.5 MG/ML Injection [Duramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 1 MG/ML Injection [Duramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892494"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892496"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892516"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892531"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892554"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 100 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "2997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892556"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 100 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "2999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892560"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 100 MG Extended Release Oral Tablet [MS Contin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG Extended Release Oral Tablet [MS Contin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892579"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892582"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892589"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892596"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892598"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892603"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892625"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892643"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 200 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892645"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 200 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892646"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 200 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892648"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 200 MG Extended Release Oral Tablet [MS Contin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892652"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Morphine Sulfate 25 MG/ML Injection [Infumorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892658"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892660"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Extended Release Oral Tablet [MS Contin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892669"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892672"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 892678"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894780"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894801"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 50 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894803"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 50 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894805"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 60 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894807"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 5 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 60 MG Extended Release Oral Tablet [MS Contin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 80 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894816"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 80 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894911"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 ML Morphine Sulfate 14.3 MG/ML Auto-Injector'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649570"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Auto-Injector'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'14.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 14.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894912"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 10 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894914"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 8 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894918"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Morphine Sulfate 200 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894933"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 150 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894942"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'45 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 45.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894970"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 894986"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 0.4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895014"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895016"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 10 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895022"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 100 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895185"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895194"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 15 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895199"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 2 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895201"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895202"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 20 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895206"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895208"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 3 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 3.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895213"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 30 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895215"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 35 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'35 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 35.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895217"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 5 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895219"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 5 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895221"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 50 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895227"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 50 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895233"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 6 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895238"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895240"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 6.67 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6.67 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.67"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895247"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895248"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 75 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895861"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 25 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895867"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine hydrochloride 40 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895869"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 895871"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 50 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897653"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897655"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 1 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897657"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897658"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 1 MG/ML Oral Solution [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897677"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897687"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897696"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 2 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897698"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 2 MG Oral Tablet [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897702"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 4 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897704"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 4 MG Oral Tablet [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 8 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897712"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 8 MG Oral Tablet [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897730"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 24 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 24.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897737"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897745"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 2 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897747"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 2 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897749"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 3 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 3.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897753"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 4 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897755"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 4 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897756"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897757"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897758"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 4 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 897771"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 1 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 898004"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 1.3 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 898138"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 2.6 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 898139"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 3 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 3.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 898612"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydromorphone Hydrochloride 3 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 3.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 898624"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 30 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 899125"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 2.4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902729"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902733"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet [Exalgo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902736"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902738"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet [Exalgo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902741"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 902743"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet [Exalgo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904870"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.01 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.01 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.01"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904874"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.01 MG/HR Transdermal System [BuTrans]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.01 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.01"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904876"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.02 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.02 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.02"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904878"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.02 MG/HR Transdermal System [BuTrans]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.02 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.02"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "3997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904880"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.005 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "3999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.005 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.005"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904882"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.005 MG/HR Transdermal System [BuTrans]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.005 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.005"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977874"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977876"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977894"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977896"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977902"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977904"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977909"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977911"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977915"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977917"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977923"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977925"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977929"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977931"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977935"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Oxymorphone Hydrochloride 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977937"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Oxymorphone Hydrochloride 1 MG/ML Injection [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977939"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977940"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 5 MG Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977942"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 10 MG Oral Tablet [Opana]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977971"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 1.5 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 977974"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone Hydrochloride 5 MG Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Rectal Suppository'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7814"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxymorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 991147"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 991149"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone Hydrochloride 10 MG/ML Oral Solution [Methadose]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6813"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Methadone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 991486"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 992656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 992668"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 992675"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydromet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 992733"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Tussigon]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993755"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993763"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993767"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension [Capital and Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993770"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993781"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993837"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet [Tylenol with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993890"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993892"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet [Tylenol with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993924"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993926"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule [Colrex]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 993943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994043"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994045"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet [Codrix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994046"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994048"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet [Codrix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994049"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994051"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet [Codrix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994226"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994228"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet [Soma Compound with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994237"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994239"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Ascomp]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994277"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fiorinal with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994289"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.27 MG/ML / Codeine Phosphate 1.27 MG/ML / Pseudoephedrine Hydrochloride 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.27 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.27"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994402"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 994404"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Mar-cof BP]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995041"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995043"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995062"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995064"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995065"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995067"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995068"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995070"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995071"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995073"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995077"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995079"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995081"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995082"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995084"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995086"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995093"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995095"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995108"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995110"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995116"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995118"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995120"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995122"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension [Zodryl DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995123"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995125"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995128"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995132"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution [Z Tuss AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995211"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995213"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet [Cotab A]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995214"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995216"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet [Cotab AX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995226"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995438"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.26 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.26"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995440"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [M-Clear WC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.26 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.26"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995441"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995443"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution [Mar-cof CG]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995447"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.8 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995450"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995453"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995455"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet [Maxiphen CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995476"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "4997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995478"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet [Allfen CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "4999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995483"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995868"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995872"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheratussin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995936"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet [Brontex]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995940"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution [Brontex]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995956"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheracol with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995983"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995985"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Biotussin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 995993"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Cheratussin DAC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996253"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Nucofed Expectorant]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996263"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine Expectorant]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996462"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Guiatuss AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996481"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Mytussin AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996484"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Robafen AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996512"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 60 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996580"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996584"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution [Zotex C]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996621"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996623"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Ala-Hist AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996627"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996629"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution [Notuss PE]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996636"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Pyrilamine Maleate 3 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996640"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996648"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Pseudodine C]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996650"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Triacin C]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996706"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996708"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Maxiphen CDX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996712"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996714"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996716"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996718"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996720"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996722"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996724"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996725"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996727"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet [Allfen CDX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996728"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996730"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule [Nucofed]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996734"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996736"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 9.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996738"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule [M-Clear WC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 9.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996757"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996976"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 12.8 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 13.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'13.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 13.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996979"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996981"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996982"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996983"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996988"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 300 MG / Codeine Phosphate 8 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996991"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Codeine Phosphate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996994"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Codeine Phosphate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 996998"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.27 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.27"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997008"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997014"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 0.6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997019"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Kaolin 300 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997160"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997164"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 12.5 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997165"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 12.8 MG / Ibuprofen 200 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997169"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997170"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine sulfate 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997175"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997272"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997280"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Ibuprofen 300 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997284"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 3 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 3.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997285"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997287"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine sulfate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997289"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 30 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997296"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine sulfate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997301"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997303"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 60 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 997398"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 998212"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 2 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 998213"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 4 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 999729"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 250 MG / tramadol hydrochloride 50 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010600"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010603"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010604"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010606"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010608"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1010609"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1012727"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Carbinoxamine maleate 0.4 MG/ML / HYDROcodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151137"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Liquid Product'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'HYDROcodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1014599"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1014615"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1014632"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1037259"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1042693"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1043650"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Poly Hist NC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1044427"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.667 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.667"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049214"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049216"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Endocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049221"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049223"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Endocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049225"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049227"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Endocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049233"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049251"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049260"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049267"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 400 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "5997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049270"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "5999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049502"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049504"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049543"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049545"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049557"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 160 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'160 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 160.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049563"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049565"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049576"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049580"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049582"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution [Roxicet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049584"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049586"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049589"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Ibuprofen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049593"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049595"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049599"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049601"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet [Oxycontin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049604"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049611"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049613"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 15 MG Oral Tablet [Roxicodone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049615"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049618"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049620"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 30 MG Oral Tablet [Roxicodone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049621"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049623"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicodone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049625"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049635"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049637"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049640"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049642"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049647"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049650"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049651"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049655"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Xolox]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049658"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049683"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049686"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049691"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049696"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049709"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049717"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 10 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049719"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049720"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 10 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049721"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 20 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1049727"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1050409"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 20 MG/ML Oral Solution [Oxyfast]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1050490"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053647"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053651"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053652"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053654"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053655"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053657"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053658"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053660"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053661"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053663"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053664"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1053666"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG Sublingual Tablet [Abstral]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1086310"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1086926"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Relcof C]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.26 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.26"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1087389"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule [TussiCaps]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1087427"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule [TussiCaps]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1087459"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1087463"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension [Tussionex]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088951"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088953"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088963"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088970"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088975"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1088977"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089021"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089023"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089025"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089027"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089028"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089030"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension [Zodryl DEC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089055"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089057"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089058"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089060"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089061"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089063"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089070"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1089072"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1098906"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1099711"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG / Triprolidine Hydrochloride 4 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1112220"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1112224"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Zutripro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113048"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113050"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Notuss-NXD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113051"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113053"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Notuss-NX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113313"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxecta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113314"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 7.5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113316"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxecta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "6997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113417"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "6999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113437"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine DH]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1113998"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114002"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution [Codar AR]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114026"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114030"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Codar GF]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114110"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114334"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114338"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Rezira]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1114878"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1115573"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG/ACTUAT Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1115575"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG/ACTUAT Nasal Spray [Lazanda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1115577"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG/ACTUAT Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1115579"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG/ACTUAT Nasal Spray [Lazanda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1145972"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Codar D]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1147395"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1147709"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution [Lortuss EX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148478"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148482"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule [ConZip]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148485"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148487"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule [ConZip]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148491"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule [ConZip]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148797"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148800"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 150 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148803"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 200 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148807"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 250 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'250 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 250.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1148809"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 50 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1149367"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 100 MG Extended Release Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1149370"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 150 MG Extended Release Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1149373"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 200 MG Extended Release Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1149376"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 250 MG Extended Release Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'250 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 250.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1149378"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR tapentadol 50 MG Extended Release Oral Tablet [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1190201"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1190284"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule [Avinza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'45 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 45.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1190580"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1190587"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution [M-End Max D]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1190785"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Atropine Sulfate 0.6 MG/ML / Morphine Sulfate 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1232113"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 15 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1233685"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.003 MG/ML / Ropivacaine hydrochloride 2.5 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.003 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1233686"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 1 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.004 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.004"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1233687"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 2 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.004 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.004"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1233700"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 0.01 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.01 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.01"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234871"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234872"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234941"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234957"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [ColdCough PD]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234976"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Synalgos-DC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234978"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 712.8 MG / Caffeine 60 MG / dihydrocodeine bitartrate 32 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234990"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1234999"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / dihydrocodeine bitartrate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1235009"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / dihydrocodeine bitartrate 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1235011"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / dihydrocodeine bitartrate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1235862"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236113"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236115"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Poly Tussin EX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236179"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 120 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'120 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 120.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236181"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236182"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236184"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 40 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236186"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 50 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236188"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236190"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 90 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'90 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 90.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1236239"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine bitartrate 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237050"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG/ACTUAT Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237055"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.1 MG/ACTUAT Mucosal Spray [Subsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.1 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237057"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG/ACTUAT Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237059"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.2 MG/ACTUAT Mucosal Spray [Subsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.2 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237060"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG/ACTUAT Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237062"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.4 MG/ACTUAT Mucosal Spray [Subsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237064"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG/ACTUAT Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237066"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.6 MG/ACTUAT Mucosal Spray [Subsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237068"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG/ACTUAT Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1237070"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.8 MG/ACTUAT Mucosal Spray [Subsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 346163"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Mucosal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1242106"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 100 MG/ML Cartridge [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1242503"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 25 MG/ML Cartridge [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1242558"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Statuss Green Reformulated Jan 2012]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1244754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1244921"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution [M-End PE]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.27 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.27"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1248039"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Entuss-D Liquid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1248040"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1248044"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Nalex Expectorant]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1248046"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Vanacon]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1248115"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR tramadol hydrochloride 150 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1294356"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Bromodiphenhydramine hydrochloride 2.5 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1294380"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1294382"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1294383"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1297584"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension [Dytan-HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1297649"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine sulfate 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1302739"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol 10 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1302741"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol 10 MG/ML Injectable Solution [Dolorex Solution]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303729"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 130 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'130 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 130.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303731"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 130 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'130 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 130.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303733"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 150 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303736"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 40 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303738"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 40 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303740"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 70 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'70 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 70.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1303742"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine Sulfate 70 MG Extended Release Oral Capsule [Kadian]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'70 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 70.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "7997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1306898"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "7999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1306900"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet [Exalgo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'32 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 32.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1307056"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1307058"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1307061"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1307063"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip [Suboxone]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 704866"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Strip'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 12.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1308438"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1308440"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Nalex AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1310202"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1310212"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Vicodin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1310270"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Vicodin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1310927"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol 10 MG/ML Injectable Solution [Butorphic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1313294"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356315"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 20 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356319"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol 20 MG/ML Oral Solution [Nucynta]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 787390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'tapentadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356797"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356799"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356800"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356802"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet [BroveX CB]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356806"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356807"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356809"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet [BroveX CB]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1356835"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.6 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1357402"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylpropanolamine Hydrochloride 2.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1357940"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1357942"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Zotex HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1358753"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1366873"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1366875"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [P-V-Tussin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1366879"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [P-V-Tussin Syrup]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1368072"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Tusnel C]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1372265"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1372873"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Vituz]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1424295"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Chlorpheniramine Maleate 2 MG / Codeine Phosphate 8 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1424297"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 6 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1431076"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1431083"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1431102"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5.7 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1431104"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5.7 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1431286"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1432969"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.015 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.015 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.015"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1432971"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.015 MG/HR Transdermal System [BuTrans]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.015 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.015"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1433251"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1433802"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fioricet with Codeine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1440003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.8 MG/ML / Dexchlorpheniramine maleate 0.2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1442445"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.667 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.667"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1442790"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 5 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1487288"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Endocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1487611"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 50 MG/ML Topical Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316986"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Topical Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1487616"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 50 MG/ML Topical Solution [Recuvyra]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316986"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Topical Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1488634"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316950"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1488639"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension [Animalgesics]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316950"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1489991"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol 10 MG/ML Injectable Solution [Torbugesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1491832"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1491834"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet [Xartemis]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1492671"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lorcet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1492673"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lorcet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1492675"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lorcet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1495472"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1495474"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1495476"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1535979"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.65 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.65"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1535981"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution [Z-Cof HC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.65 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.65"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1536457"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 8 MG Effervescent Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1535727"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Effervescent Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1536459"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 500 MG / Codeine Phosphate 30 MG Effervescent Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1535727"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Effervescent Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1537116"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Primlev]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1537120"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Primlev]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1537122"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Primlev]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1541630"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Brompheniramine Maleate 0.8 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542390"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542396"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film [Bunavail]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.1 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.1"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542981"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Verdrocet]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542988"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Xylon]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542997"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.0075 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0075 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1542999"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'168 HR Buprenorphine 0.0075 MG/HR Transdermal System [BuTrans]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0075 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1544851"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1544853"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film [Bunavail]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1544854"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1544856"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film [Bunavail]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'6.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 6.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1545903"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naloxone Hydrochloride 10 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1545907"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naloxone Hydrochloride 20 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1545910"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1546089"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Targiniq]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1547607"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Lortuss EX]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1594650"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 1.8 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1594655"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 1.8 MG/ML Injectable Solution [Simbadol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.8"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595214"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Ninjacof XG]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.6 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595730"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595736"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595740"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595742"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595746"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595748"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595752"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595758"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595760"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595764"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595766"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "8997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595770"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "8999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'120 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 120.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1595772"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet [Hysingla]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'120 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 120.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1596108"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316965"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1597568"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'11.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 11.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1597570"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'11.4 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 11.4"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1597573"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1597575"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1598284"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Obredon]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1603495"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.0375 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0375 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0375"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1603498"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.0625 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0625 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0625"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1603501"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'72 HR Fentanyl 0.0875 MG/HR Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.0875 MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.0875"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/HR'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1650982"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Flowtuss]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1651558"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1651564"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hycofenix]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1652087"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1652093"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension [Tuzistra]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316946"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Suspension'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1655032"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Buprenorphine 0.3 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1655058"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 150 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'150 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 150.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1655060"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine Hydrochloride 75 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 75.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1661319"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1661325"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution [Histex AC]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1664448"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxaydo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1664543"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Chlorpheniramine Maleate 8 MG / Codeine Phosphate 54.3 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'54.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 54.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1664634"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxaydo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'7.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 7.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665685"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 100 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665687"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 100 MG/ML Injection [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665690"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665691"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665697"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665698"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665699"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665700"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665701"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Meperidine Hydrochloride 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1665702"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 6754"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Meperidine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1666338"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1666385"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2.9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1666831"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.04 MG Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.04 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.04"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1666837"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.04 MG Transdermal System [Ionsys]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316987"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Transdermal System'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.04 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.04"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716057"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.15 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.15"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716063"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.15 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.15"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716065"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.3 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716067"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.3 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716069"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.45 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.45 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.45"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716071"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.45 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.45 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.45"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716073"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.6 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.6 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.6 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.6"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716077"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.075 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.075 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716079"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.075 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.075 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.075"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716081"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.75 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.75"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716083"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.75 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.75 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.75"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716086"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.9 MG Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1716090"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.9 MG Buccal Film [Belbuca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 858080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buccal Film'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.9"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724276"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 2 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724338"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9531"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9534"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9536"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9537"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724340"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9539"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9543"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9546"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9547"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724341"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 ML Hydromorphone Hydrochloride 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9549"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9554"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9557"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724352"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 250 MG Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9561"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9563"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'250 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9564"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 250.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9566"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9567"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724354"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone Hydrochloride 250 MG Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9571"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9573"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'250 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9574"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 250.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9576"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9577"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724356"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9581"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9583"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9584"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9586"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9587"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724358"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9591"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9593"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9594"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9596"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9597"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724359"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9601"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9603"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9604"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9606"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9607"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724383"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 1 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9611"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9613"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9614"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9616"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9617"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1724644"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 2 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9621"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9623"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9624"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9626"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9627"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728351"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Butorphanol Tartrate 2 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9631"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9633"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9634"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9636"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9637"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728355"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Butorphanol Tartrate 2 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9641"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9643"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9644"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9646"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9647"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728783"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9651"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9653"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9654"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9656"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9657"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728784"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9661"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9663"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9664"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9666"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9667"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728789"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9671"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9673"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9674"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9676"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9677"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728791"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Morphine Sulfate 0.5 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9681"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9683"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9684"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9686"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9687"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728792"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9691"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9693"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9694"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9696"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9697"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728800"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9701"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9703"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9704"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9706"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9707"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728801"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9711"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9713"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9714"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9716"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9717"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728805"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Morphine Sulfate 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9721"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9723"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9724"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9726"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9727"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728806"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9731"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9733"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9734"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9736"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9737"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1728999"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 ML Morphine Sulfate 1 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9741"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9743"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9744"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9746"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9747"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1729197"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 2 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9751"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9753"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9754"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9756"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9757"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1729320"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG/ACTUAT Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9761"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9763"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9764"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9766"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9767"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1729322"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl 0.3 MG/ACTUAT Nasal Spray [Lazanda]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 126542"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nasal Spray'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9771"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9773"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.3 MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9774"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.3"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ACTUAT'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9776"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9777"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731517"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Morphine Sulfate 25 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9781"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9783"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9784"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9786"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9787"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731520"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 ML Morphine Sulfate 25 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9789"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9791"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9793"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9794"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9796"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9797"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731522"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Morphine Sulfate 25 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9799"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9801"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9803"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'25 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9804"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 25.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9806"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9807"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731530"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 15 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9809"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9811"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9813"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9814"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9816"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9817"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731537"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Morphine Sulfate 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9819"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9821"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9823"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9824"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9826"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9827"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731545"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 ML Morphine Sulfate 50 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9829"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9831"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9833"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9834"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9836"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9837"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731993"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9839"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9841"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9843"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9844"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9846"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9847"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731995"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 10 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9849"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9851"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9853"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9854"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9856"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9857"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731998"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Morphine Sulfate 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9859"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9861"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9863"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9864"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9866"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9867"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1731999"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Morphine Sulfate 10 MG/ML Injection [Infumorph]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9869"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9871"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9873"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9874"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9876"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9877"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 8 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9879"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9881"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9883"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9884"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9886"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9887"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732006"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 4 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9889"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9891"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9893"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9894"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9896"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9897"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732011"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 8 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9899"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9901"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9903"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'8 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9904"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 8.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9906"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9907"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732014"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 4 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9909"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9911"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9913"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9914"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9916"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9917"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732136"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 5 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9919"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9921"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9923"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9924"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9926"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9927"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1732138"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 ML Morphine Sulfate 5 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9929"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9931"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9933"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9934"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9936"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9937"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1733080"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Morphine Sulfate 15 MG/ML Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9939"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649572"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Cartridge'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9941"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9943"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9944"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9946"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9947"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735003"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Fentanyl 0.05 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9949"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9951"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9953"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9954"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9956"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9957"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735006"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Fentanyl 0.05 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9959"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9961"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9963"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9964"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9966"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9967"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 ML Fentanyl 0.05 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9969"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9971"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9973"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9974"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9976"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9977"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735008"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Fentanyl 0.05 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9979"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9981"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9983"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9984"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9986"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9987"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735013"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 ML Fentanyl 0.05 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9989"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9991"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9993"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9994"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9996"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "9997"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735057"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "9999"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10001"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10003"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10004"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10006"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10007"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735060"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10009"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10011"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10013"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10014"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10016"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10017"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735062"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10019"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10021"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10023"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10024"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10026"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10027"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1735065"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10029"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10031"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 4337"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Fentanyl'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10033"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.05 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10034"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.05"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10036"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10037"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1745881"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Morphabond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10039"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10041"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10043"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10044"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10046"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10047"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1745886"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet [Morphabond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10049"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10051"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10053"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10054"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10056"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10057"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1745889"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Morphabond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10059"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10061"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10063"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10064"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10066"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10067"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1745892"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Morphabond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10069"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10071"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10073"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10074"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10076"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10077"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1790527"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10079"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10081"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10083"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10084"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 9.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10086"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10087"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1790533"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule [Xtampza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10089"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10091"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10093"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'9 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10094"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 9.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10096"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10097"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791558"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10099"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10101"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10103"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'13.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 13.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10106"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10107"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791560"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule [Xtampza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10109"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10111"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10113"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'13.5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10114"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 13.5"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10116"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10117"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791567"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10119"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10121"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10123"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'18 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10124"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 18.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10126"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10127"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791569"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule [Xtampza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10129"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10131"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10133"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'18 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10134"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 18.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10136"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10137"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10139"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10141"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10143"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'27 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10144"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 27.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10146"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10147"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791576"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule [Xtampza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10149"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10151"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10153"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'27 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10154"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 27.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10156"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10157"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791580"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10159"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10161"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10163"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'36 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10164"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 36.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10166"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10167"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1791582"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule [Xtampza]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10169"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10171"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10173"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'36 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10174"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 36.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10176"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10177"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1792707"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10179"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316968"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10181"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 2670"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Codeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10183"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10184"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10186"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10187"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1797650"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 74.2 MG Drug Implant'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10189"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 657710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Drug Implant'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10191"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10193"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'74.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10194"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 74.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10196"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10197"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1797655"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 74.2 MG Drug Implant [Probuphine]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10199"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 657710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Drug Implant'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10201"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10203"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'74.2 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10204"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 74.2"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10206"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10207"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806701"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10209"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10211"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10213"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10214"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10216"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10217"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806707"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule [Troxyca]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10219"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10221"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10223"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10224"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10226"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10227"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806710"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 2.4 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10229"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10231"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10233"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10234"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10236"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10237"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806716"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 3.6 MG / Oxycodone Hydrochloride 30 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10239"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10241"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10243"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10244"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10246"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10247"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806722"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 4.8 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10249"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10251"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10253"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10254"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10256"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10257"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806728"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 7.2 MG / Oxycodone Hydrochloride 60 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10259"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10261"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10263"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10264"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10266"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10267"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1806734"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Naltrexone hydrochloride 9.6 MG / Oxycodone Hydrochloride 80 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10269"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10271"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10273"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10274"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10276"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10277"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1809204"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol Tartrate 2 MG/ML Injectable Solution [Torbugesic]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10279"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10281"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10283"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10284"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10286"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10287"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1811473"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Pentazocine 30 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10289"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10291"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10293"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10294"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10296"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10297"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1811475"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Pentazocine 30 MG/ML Injection [Talwin]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10299"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1649574"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10301"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 8001"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Pentazocine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10303"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10304"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10306"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10307"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1812164"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Acetaminophen 325 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10309"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10311"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 23088"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'dihydrocodeine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10313"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'16 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10314"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 16.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10316"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10317"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860127"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10319"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10321"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10323"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10324"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10326"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10327"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860129"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10329"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10331"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10333"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10334"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10336"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10337"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860137"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10339"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10341"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10343"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10344"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10346"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10347"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860148"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10349"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10351"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10353"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'80 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10354"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 80.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10356"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10357"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860151"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10359"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10361"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10363"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10364"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10366"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10367"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860154"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10369"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10371"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10373"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10374"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10376"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10377"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860157"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10379"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10381"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10383"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10384"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10386"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10387"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860491"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10389"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10391"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10393"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10394"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10396"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10397"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860492"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10399"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10401"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10403"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10404"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10406"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10407"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860493"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10409"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10411"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10413"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10414"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10416"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10417"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860494"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10419"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10421"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10423"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10424"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10426"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10427"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860495"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10429"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10431"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10433"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10434"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10436"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10437"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860496"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10439"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10441"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10443"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10444"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10446"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10447"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860497"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10449"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10451"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10453"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10454"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10456"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10457"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860498"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10459"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10461"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10463"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10464"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10466"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10467"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860499"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10469"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10471"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10473"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10474"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10476"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10477"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860500"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10479"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10481"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10483"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'40 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10484"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 40.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10486"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10487"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860501"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10489"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10491"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10493"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10494"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10496"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10497"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1860502"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule [Zohydro]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10499"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316943"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Capsule'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10501"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 5489"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydrocodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10503"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'50 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10504"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 50.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10506"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10507"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1864412"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10509"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10511"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10513"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10514"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10516"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10517"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1864414"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet [Zubsolv]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10519"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317007"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Sublingual Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10521"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1819"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Buprenorphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10523"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.7 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10524"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 0.7"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10526"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10527"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1866543"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Nalbuphine Hydrochloride 10 MG/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10529"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151126"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7238"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10532"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10533"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10535"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10536"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1866551"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Nalbuphine Hydrochloride 20 M/ML Injection'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10538"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151126"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7238"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10541"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10542"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10544"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10545"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904415"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine Hydrochloride 10MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10547"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151126"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7238"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10550"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10551"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10553"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10554"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 904440"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine Hydrochloride 20 MG/ML Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10556"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 1151126"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7238"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Nalbuphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10559"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'20 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10560"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 20.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10562"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10563"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871434"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10565"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10567"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10569"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10570"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10572"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10573"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871440"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Arymo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10575"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10577"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10579"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10580"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10582"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10583"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871441"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10585"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10587"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10589"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10590"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10592"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10593"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871443"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Arymo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10595"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10597"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10599"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10600"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10602"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10603"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871444"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10605"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10607"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10609"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10610"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10612"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10613"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1871446"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Arymo]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10615"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10617"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10619"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'60 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10620"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 60.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10622"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10623"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872234"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10625"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10627"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7052"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Morphine'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10629"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10630"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10632"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10633"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872265"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10635"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10637"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10639"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10640"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10642"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10643"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872269"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10645"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10647"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10649"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'2 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10650"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 2.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10652"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10653"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872271"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10655"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10657"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10659"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10660"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10662"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10663"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872272"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10665"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10667"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10669"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'4 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10670"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 4.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10672"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10673"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1872752"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10675"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 721656"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Prefilled Syringe'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10677"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 3423"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Hydromorphone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10679"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'1 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10680"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 1.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10682"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10683"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944529"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10685"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10687"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10689"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10690"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10692"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10693"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944535"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet [Roxybond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10695"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10697"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10699"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'15 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10700"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 15.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10702"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10703"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944538"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10705"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10707"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10709"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10710"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10712"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10713"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944540"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet [Roxybond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10715"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10717"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10719"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'30 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10720"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 30.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10722"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10723"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10725"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10727"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10729"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10730"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10732"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10733"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1944543"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet [Roxybond]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10735"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 317541"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10737"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 7804"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Oxycodone'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10739"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'5 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10740"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 5.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10742"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10743"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1946525"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10745"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10747"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10749"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'300 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10750"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 300.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10752"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10753"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1946527"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10755"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10757"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10759"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'200 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10760"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 200.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10762"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10763"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1946529"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10765"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316945"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Extended Release Oral Tablet'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10767"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 10689"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Tramadol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10769"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'100 MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10770"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 100.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10772"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10773"
                      },
                      {
                        "children": [
                          {
                            "text": ", "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "{&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugCode: 1947138"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "drugName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol 10 MG/ML Injectable Solution [Torphaject]'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10775"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormCode: 316949"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "doseFormName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Injectable Solution'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10777"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientCode: 1841"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "ingredientName: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'Butorphanol'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10779"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strength: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'10 MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10780"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthValue: 10.0"
                                  }
                                ]
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": ",&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "strengthUnit: "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "'MG/ML'"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "10782"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  }"
                              }
                            ]
                          }
                        ],
                        "ref_id": "10783"
                      },
                      {
                        "children": [
                          {
                            "text": " }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "10784"
                  }
                ],
                "ref_id": "10785"
              }
            ],
            "define_name": "DrugIngredients"
          }
        ],
        "identifier": {
          "id": "OpioidData",
          "version": "0.8.000"
        }
      },
      "is_main_library": false,
      "is_top_level": true,
      "library_name": "OpioidData",
      "library_version": "0.8.000",
      "statement_dependencies": [
        {
          "statement_name": "DrugIngredients"
        }
      ]
    },
    {
      "cql": "library OpioidData version '0.8.000'\r\n\r\nusing QDM version '5.3'\r\n\r\ncodesystem \"LOINC\": 'urn:oid:2.16.840.1.113883.6.1'\r\ncodesystem \"SNOMEDCT\": 'urn:oid:2.16.840.1.113883.6.96'\r\n\r\ncode \"Birthdate\": '21112-8' from \"LOINC\" display 'Birthdate'\r\ncode \"Dead\": '419099009' from \"SNOMEDCT\" display 'Dead'\r\n\r\nparameter \"Measurement Period\" Interval<DateTime>\r\n\r\ncontext Patient\r\n\r\ndefine \"DrugIngredients\":\r\n\t{ {\r\n\t\tdrugCode: 197696,\r\n\t\tdrugName: '72 HR Fentanyl 0.075 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.075 MG/HR',\r\n\t\tstrengthValue: 0.075,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 197873,\r\n\t\tdrugName: 'Levorphanol 2 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6378,\r\n\t\tingredientName: 'Levorphanol',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 198402,\r\n\t\tdrugName: 'Fentanyl 1.5 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 198403,\r\n\t\tdrugName: 'Fentanyl 2.5 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '2.5 MG/ML',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 199400,\r\n\t\tdrugName: 'Codeine 50 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 199789,\r\n\t\tdrugName: 'Pentazocine 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 205533,\r\n\t\tdrugName: '1 ML Buprenorphine 0.3 MG/ML Injection [Buprenex]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.3 MG/ML',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 211354,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet [Talacen]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '25 MG',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 238129,\r\n\t\tdrugName: '1 ML Buprenorphine 0.3 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.3 MG/ML',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 238133,\r\n\t\tdrugName: 'Pentazocine 30 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 245134,\r\n\t\tdrugName: '72 HR Fentanyl 0.025 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.025 MG/HR',\r\n\t\tstrengthValue: 0.025,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 245135,\r\n\t\tdrugName: '72 HR Fentanyl 0.05 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/HR',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 245136,\r\n\t\tdrugName: '72 HR Fentanyl 0.1 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/HR',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 246474,\r\n\t\tdrugName: 'Buprenorphine 0.2 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 250426,\r\n\t\tdrugName: 'Buprenorphine 0.4 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 250485,\r\n\t\tdrugName: 'Pentazocine 25 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '25 MG',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 250486,\r\n\t\tdrugName: 'Pentazocine 50 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 250877,\r\n\t\tdrugName: 'Pentazocine 50 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261106,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261107,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261108,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261109,\r\n\t\tdrugName: 'Fentanyl 1.2 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.2 MG',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261110,\r\n\t\tdrugName: 'Fentanyl 1.6 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.6 MG',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 261184,\r\n\t\tdrugName: '72 HR Fentanyl 0.025 MG/HR Transdermal System [Duragesic]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.025 MG/HR',\r\n\t\tstrengthValue: 0.025,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 261185,\r\n\t\tdrugName: '72 HR Fentanyl 0.05 MG/HR Transdermal System [Duragesic]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/HR',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 261186,\r\n\t\tdrugName: '72 HR Fentanyl 0.075 MG/HR Transdermal System [Duragesic]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.075 MG/HR',\r\n\t\tstrengthValue: 0.075,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 262071,\r\n\t\tdrugName: '72 HR Fentanyl 0.1 MG/HR Transdermal System [Duragesic]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/HR',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 262219,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Oral Lozenge [Actiq]',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 310293,\r\n\t\tdrugName: 'Fentanyl 1.2 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.2 MG',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 310294,\r\n\t\tdrugName: 'Fentanyl 1.6 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.6 MG',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 310295,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 310296,\r\n\t\tdrugName: 'Fentanyl 0.3 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 310297,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 311297,\r\n\t\tdrugName: 'Levomethadyl 10 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 237005,\r\n\t\tingredientName: 'Levomethadyl',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 311300,\r\n\t\tdrugName: 'Levorphanol 2 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6378,\r\n\t\tingredientName: 'Levorphanol',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 312104,\r\n\t\tdrugName: 'Belladonna Alkaloids 16.2 MG/Opium 30 MG Rectal Suppository',\r\n\t\tdoseFormCode: 1151127,\r\n\t\tingredientCode: 7676,\r\n\t\tingredientName: 'Opium',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 312107,\r\n\t\tdrugName: 'Belladonna Alkaloids 16.2 MG/Opium 60 MG Rectal Suppository',\r\n\t\tdoseFormCode: 1151127,\r\n\t\tingredientCode: 7676,\r\n\t\tingredientName: 'Opium',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 830196,\r\n\t\tdrugName: 'opium tincture 100 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 1151131,\r\n\t\tingredientCode: 7676,\r\n\t\tingredientName: 'Opium',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 312288,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Pentazocine 25 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '25 MG',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 312289,\r\n\t\tdrugName: 'Naloxone 0.5 MG / Pentazocine 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 313992,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 313993,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Oral Lozenge',\r\n\t\tdoseFormCode: 316992,\r\n\t\tdoseFormName: 'Oral Lozenge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 351264,\r\n\t\tdrugName: 'Buprenorphine 2 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 351265,\r\n\t\tdrugName: 'Buprenorphine 8 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 351266,\r\n\t\tdrugName: 'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 351267,\r\n\t\tdrugName: 'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 388506,\r\n\t\tdrugName: '72 HR Buprenorphine 0.07 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.07 MG/HR',\r\n\t\tstrengthValue: 0.07,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 388507,\r\n\t\tdrugName: '72 HR Buprenorphine 0.0525 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.0525 MG/HR',\r\n\t\tstrengthValue: 0.0525,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 388508,\r\n\t\tdrugName: '72 HR Buprenorphine 0.035 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.035 MG/HR',\r\n\t\tstrengthValue: 0.035,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 577057,\r\n\t\tdrugName: '72 HR Fentanyl 0.012 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.012 MG/HR',\r\n\t\tstrengthValue: 0.012,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 583490,\r\n\t\tdrugName: '72 HR Fentanyl 0.012 MG/HR Transdermal System [Duragesic]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.012 MG/HR',\r\n\t\tstrengthValue: 0.012,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 637540,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '4.5 MG',\r\n\t\tstrengthValue: 4.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 637540,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 4.5 MG / oxycodone terephthalate 0.38 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '0.38 MG',\r\n\t\tstrengthValue: 0.38,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668363,\r\n\t\tdrugName: 'Fentanyl 0.1 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668364,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668365,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668366,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668367,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668622,\r\n\t\tdrugName: 'Fentanyl 0.1 MG Buccal Tablet [Fentora]',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668624,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Buccal Tablet [Fentora]',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668626,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Buccal Tablet [Fentora]',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668628,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Buccal Tablet [Fentora]',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 668630,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Buccal Tablet [Fentora]',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 706898,\r\n\t\tdrugName: 'Fentanyl 0.3 MG Buccal Tablet',\r\n\t\tdoseFormCode: 970789,\r\n\t\tdoseFormName: 'Buccal Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 724614,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '0.19 MG',\r\n\t\tstrengthValue: 0.19,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 724614,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 2.25 MG / oxycodone terephthalate 0.19 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '2.25 MG',\r\n\t\tstrengthValue: 2.25,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 727759,\r\n\t\tdrugName: '2 ML Fentanyl 0.05 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 825409,\r\n\t\tdrugName: 'tapentadol 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 825411,\r\n\t\tdrugName: 'tapentadol 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 825413,\r\n\t\tdrugName: 'tapentadol 75 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 827748,\r\n\t\tdrugName: 'propoxyphene napsylate 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 827750,\r\n\t\tdrugName: 'propoxyphene napsylate 100 MG Oral Tablet [Darvon-N]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 827751,\r\n\t\tdrugName: 'Acetaminophen 325 MG / propoxyphene napsylate 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 828576,\r\n\t\tdrugName: 'Acetaminophen 650 MG / propoxyphene napsylate 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 828581,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Propoxyphene Hydrochloride 65 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '65 MG',\r\n\t\tstrengthValue: 65.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 828585,\r\n\t\tdrugName: 'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 32 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '32 MG',\r\n\t\tstrengthValue: 32.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 828594,\r\n\t\tdrugName: 'Aspirin 389 MG / Caffeine 32.4 MG / Propoxyphene Hydrochloride 65 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '65 MG',\r\n\t\tstrengthValue: 65.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833036,\r\n\t\tdrugName: 'Acetaminophen 750 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833709,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833710,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ryzolt]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833711,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833712,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ryzolt]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833713,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 833714,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ryzolt]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 835603,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 835605,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG Oral Tablet [Ultram]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 836395,\r\n\t\tdrugName: 'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '37.5 MG',\r\n\t\tstrengthValue: 37.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 836397,\r\n\t\tdrugName: 'Acetaminophen 325 MG / tramadol hydrochloride 37.5 MG Oral Tablet [Ultracet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '37.5 MG',\r\n\t\tstrengthValue: 37.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 836408,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG Disintegrating Oral Tablet',\r\n\t\tdoseFormCode: 316942,\r\n\t\tdoseFormName: 'Disintegrating Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 836466,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 836485,\r\n\t\tdrugName: 'tramadol hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 845314,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet [Ultram]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 845315,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet [Ultram]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 845316,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet [Ultram]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 848768,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '4.84 MG',\r\n\t\tstrengthValue: 4.84,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 848772,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Percodan Reformulated May 2009]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '4.84 MG',\r\n\t\tstrengthValue: 4.84,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 848928,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 4.84 MG Oral Tablet [Endodan Reformulated May 2009]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '4.84 MG',\r\n\t\tstrengthValue: 4.84,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849279,\r\n\t\tdrugName: 'Propoxyphene Hydrochloride 65 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '65 MG',\r\n\t\tstrengthValue: 65.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849293,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Propoxyphene Hydrochloride 32.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '32.5 MG',\r\n\t\tstrengthValue: 32.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849295,\r\n\t\tdrugName: 'Acetaminophen 325 MG / propoxyphene napsylate 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849303,\r\n\t\tdrugName: 'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849304,\r\n\t\tdrugName: 'Acetaminophen 500 MG / propoxyphene napsylate 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849306,\r\n\t\tdrugName: 'Acetaminophen 65 MG/ML / Propoxyphene Hydrochloride 6.5 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '6.5 MG/ML',\r\n\t\tstrengthValue: 6.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 849329,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 849331,\r\n\t\tdrugName: 'tramadol hydrochloride 75 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849455,\r\n\t\tdrugName: 'Propoxyphene Hydrochloride 100 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 8785,\r\n\t\tingredientName: 'Propoxyphene',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849563,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 150 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849564,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 400 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '400 MG',\r\n\t\tstrengthValue: 400.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 849903,\r\n\t\tdrugName: 'tramadol hydrochloride 50 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 854140,\r\n\t\tdrugName: 'tapentadol 100 MG Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 854142,\r\n\t\tdrugName: 'tapentadol 50 MG Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 854144,\r\n\t\tdrugName: 'tapentadol 75 MG Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856892,\r\n\t\tdrugName: 'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856894,\r\n\t\tdrugName: 'Acetaminophen 750 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Maxidone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856903,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856907,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856908,\r\n\t\tdrugName: 'Acetaminophen 660 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856940,\r\n\t\tdrugName: 'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 856942,\r\n\t\tdrugName: 'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hycet]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 856944,\r\n\t\tdrugName: 'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.67 MG/ML',\r\n\t\tstrengthValue: 0.67,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 856946,\r\n\t\tdrugName: 'Acetaminophen 21.7 MG/ML / Hydrocodone Bitartrate 0.67 MG/ML Oral Solution [Zamicet]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.67 MG/ML',\r\n\t\tstrengthValue: 0.67,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 856962,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856980,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856984,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856987,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856991,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Xodol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856992,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856996,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Xodol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 856999,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857001,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Norco]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857002,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857004,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Norco]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857005,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857007,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Norco]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857076,\r\n\t\tdrugName: 'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.333 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.333 MG/ML',\r\n\t\tstrengthValue: 0.333,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857083,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857099,\r\n\t\tdrugName: 'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857105,\r\n\t\tdrugName: 'Acetaminophen 33.3 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Lortab]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857107,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857111,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857113,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Lortab]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857118,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857120,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857121,\r\n\t\tdrugName: 'Aspirin 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857128,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857131,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857134,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857136,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Zydone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857237,\r\n\t\tdrugName: 'Pentazocine 30 MG/ML Injectable Solution [Talwin]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857370,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Hy-Phen]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857383,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Hydrocodone Bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857391,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857501,\r\n\t\tdrugName: 'Acetaminophen 556 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857510,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857512,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 857556,\r\n\t\tdrugName: 'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.34 MG/ML',\r\n\t\tstrengthValue: 0.34,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857575,\r\n\t\tdrugName: 'Brompheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.34 MG/ML / Pseudoephedrine 6 MG/ML Oral Solution [Bromplex HD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.34 MG/ML',\r\n\t\tstrengthValue: 0.34,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857734,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.334 MG/ML',\r\n\t\tstrengthValue: 0.334,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857830,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Triant-HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.334 MG/ML',\r\n\t\tstrengthValue: 0.334,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857839,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857845,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 857851,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858087,\r\n\t\tdrugName: 'Fentanyl 1.2 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '1.2 MG',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858092,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858095,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858098,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858101,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858770,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858772,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 2.5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858778,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858780,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858784,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 5 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858798,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858838,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 7.5 MG / Ibuprofen 200 MG Oral Tablet [Vicoprofen]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 858876,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858878,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858937,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hyphed]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858939,\r\n\t\tdrugName: 'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858945,\r\n\t\tdrugName: 'guaiacolsulfonate 24 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Hydron EX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858953,\r\n\t\tdrugName: 'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.6 MG/ML',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858967,\r\n\t\tdrugName: 'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.9 MG/ML',\r\n\t\tstrengthValue: 0.9,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858969,\r\n\t\tdrugName: 'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Hy-KXP]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.9 MG/ML',\r\n\t\tstrengthValue: 0.9,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858976,\r\n\t\tdrugName: 'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 0.9 MG/ML Oral Solution [Prolex DH]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.9 MG/ML',\r\n\t\tstrengthValue: 0.9,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 858991,\r\n\t\tdrugName: 'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859003,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859005,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [S-T Forte 2]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859019,\r\n\t\tdrugName: 'guaiacolsulfonate 60 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydron KGS]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859027,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.7 MG/ML',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859029,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Hydro-PC II]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.7 MG/ML',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859097,\r\n\t\tdrugName: 'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859099,\r\n\t\tdrugName: 'guaiacolsulfonate 70 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [KGS HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859137,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859141,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [B-Tuss]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859143,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Drotuss CP]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859146,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859150,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Hydron CP]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859156,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859162,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1.2 MG/ML',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859164,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML Oral Solution [Poly-Tussin]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1.2 MG/ML',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859220,\r\n\t\tdrugName: 'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.65 MG/ML',\r\n\t\tstrengthValue: 0.65,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859222,\r\n\t\tdrugName: 'Chlorpheniramine 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine 1.6 MG/ML Oral Solution [Relasin HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.65 MG/ML',\r\n\t\tstrengthValue: 0.65,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859247,\r\n\t\tdrugName: 'Chlorpheniramine 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Extended Release Suspension',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859315,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 859317,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Ibudone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 859327,\r\n\t\tdrugName: 'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859329,\r\n\t\tdrugName: 'Guaifenesin 30 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.2 MG/ML Oral Solution [Hydrofed]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859331,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Reprexain]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 859366,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859368,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nariz HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859376,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 1.5 MG/ML Oral Solution [Nazarin HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859383,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859939,\r\n\t\tdrugName: 'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859941,\r\n\t\tdrugName: 'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Exetuss HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 859943,\r\n\t\tdrugName: 'Guaifenesin 45 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine 2 MG/ML Oral Solution [Simuc-HD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860138,\r\n\t\tdrugName: 'guaiacolsulfonate 30 MG/ML / Hydrocodone Bitartrate 0.6 MG/ML Oral Solution [De-Chlor NX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.6 MG/ML',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860151,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860159,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 1 MG/ML Oral Solution [De-Chlor MR]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860239,\r\n\t\tdrugName: 'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Hydro GP]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860426,\r\n\t\tdrugName: 'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860446,\r\n\t\tdrugName: 'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Drituss HD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860530,\r\n\t\tdrugName: 'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Su-Tuss HD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860579,\r\n\t\tdrugName: 'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.75 MG/ML / Pseudoephedrine 4.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.75 MG/ML',\r\n\t\tstrengthValue: 0.75,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860593,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 0.334 MG/ML / Phenylephrine 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.334 MG/ML',\r\n\t\tstrengthValue: 0.334,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 860599,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 860792,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 75 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '75 MG/ML',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861447,\r\n\t\tdrugName: 'Meperidine Hydrochloride 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861455,\r\n\t\tdrugName: 'Meperidine Hydrochloride 100 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 861459,\r\n\t\tdrugName: 'Meperidine Hydrochloride 100 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861463,\r\n\t\tdrugName: 'Meperidine Hydrochloride 50 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861467,\r\n\t\tdrugName: 'Meperidine Hydrochloride 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 861473,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 50 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861476,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 25 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861479,\r\n\t\tdrugName: 'Meperidine Hydrochloride 10 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861482,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 75 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '75 MG/ML',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861493,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 100 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861494,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 25 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861517,\r\n\t\tdrugName: 'Meperidine Hydrochloride 100 MG Oral Tablet [Demerol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 861520,\r\n\t\tdrugName: 'Meperidine Hydrochloride 100 MG/ML Injectable Solution [Demerol]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861522,\r\n\t\tdrugName: 'Meperidine Hydrochloride 50 MG/ML Injectable Solution [Demerol]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861525,\r\n\t\tdrugName: 'Meperidine Hydrochloride 50 MG Oral Tablet [Demerol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 861529,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 50 MG/ML Cartridge [Demerol]',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 861578,\r\n\t\tdrugName: 'Meperidine Hydrochloride 50 MG / Promethazine Hydrochloride 25 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 861617,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 75 MG/ML Cartridge [Demerol]',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '75 MG/ML',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 863845,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863847,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 100 MG / Naltrexone hydrochloride 4 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863848,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863849,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 20 MG / Naltrexone hydrochloride 0.8 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863850,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863851,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 30 MG / Naltrexone hydrochloride 1.2 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863852,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863853,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 50 MG / Naltrexone hydrochloride 2 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863854,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863855,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 60 MG / Naltrexone hydrochloride 2.4 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863856,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 863857,\r\n\t\tdrugName: 'Abuse-Deterrent Morphine Sulfate 80 MG / Naltrexone hydrochloride 3.2 MG Extended Release Oral Capsule [Embeda]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864706,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864708,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG Oral Tablet [Dolophine]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864712,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG Oral Tablet [Methadose]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864714,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864718,\r\n\t\tdrugName: 'Methadone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864720,\r\n\t\tdrugName: 'Methadone Hydrochloride 5 MG Oral Tablet [Dolophine]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864737,\r\n\t\tdrugName: 'Methadone Hydrochloride 5 MG Oral Tablet [Methadose]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864751,\r\n\t\tdrugName: 'Methadone Hydrochloride 0.4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864761,\r\n\t\tdrugName: 'Methadone Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864769,\r\n\t\tdrugName: 'Methadone Hydrochloride 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864794,\r\n\t\tdrugName: 'Methadone Hydrochloride 25 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864828,\r\n\t\tdrugName: 'Methadone Hydrochloride 50 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 864978,\r\n\t\tdrugName: 'Methadone Hydrochloride 40 MG Tablet for Oral Suspension',\r\n\t\tdoseFormCode: 1861409,\r\n\t\tdoseFormName: 'Tablet for Oral Suspension',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864980,\r\n\t\tdrugName: 'Methadone Hydrochloride 40 MG Tablet for Oral Suspension [Methadose]',\r\n\t\tdoseFormCode: 1861409,\r\n\t\tdoseFormName: 'Tablet for Oral Suspension',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 864984,\r\n\t\tdrugName: 'Methadone Hydrochloride 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 886622,\r\n\t\tdrugName: 'Butorphanol Tartrate 2 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 886627,\r\n\t\tdrugName: '1 ML Butorphanol Tartrate 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 886634,\r\n\t\tdrugName: 'Butorphanol Tartrate 10 MG/ML Nasal Spray',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 891172,\r\n\t\tdrugName: 'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine 2 MG/ML Oral Solution [De-Chlor G]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 891874,\r\n\t\tdrugName: 'Morphine Sulfate 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891878,\r\n\t\tdrugName: '12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891881,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891883,\r\n\t\tdrugName: '12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891885,\r\n\t\tdrugName: '12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891888,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891890,\r\n\t\tdrugName: '12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 891893,\r\n\t\tdrugName: 'Morphine Sulfate 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892297,\r\n\t\tdrugName: '24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '120 MG',\r\n\t\tstrengthValue: 120.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892299,\r\n\t\tdrugName: '24 HR Morphine Sulfate 120 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '120 MG',\r\n\t\tstrengthValue: 120.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892342,\r\n\t\tdrugName: '24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892344,\r\n\t\tdrugName: '24 HR Morphine Sulfate 30 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892345,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892349,\r\n\t\tdrugName: '24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892351,\r\n\t\tdrugName: '24 HR Morphine Sulfate 60 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892352,\r\n\t\tdrugName: 'Morphine Sulfate 60 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892355,\r\n\t\tdrugName: '24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '90 MG',\r\n\t\tstrengthValue: 90.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892357,\r\n\t\tdrugName: '24 HR Morphine Sulfate 90 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '90 MG',\r\n\t\tstrengthValue: 90.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892473,\r\n\t\tdrugName: '10 ML Morphine Sulfate 0.5 MG/ML Injection [Duramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892489,\r\n\t\tdrugName: '10 ML Morphine Sulfate 1 MG/ML Injection [Duramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892494,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892496,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892516,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892531,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892554,\r\n\t\tdrugName: 'Morphine Sulfate 100 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892556,\r\n\t\tdrugName: 'Morphine Sulfate 100 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892560,\r\n\t\tdrugName: 'Morphine Sulfate 100 MG Extended Release Oral Tablet [MS Contin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892574,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG Extended Release Oral Tablet [MS Contin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892579,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892582,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892589,\r\n\t\tdrugName: 'Morphine Sulfate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892596,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892598,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892603,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892625,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892643,\r\n\t\tdrugName: 'Morphine Sulfate 200 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892645,\r\n\t\tdrugName: 'Morphine Sulfate 200 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892646,\r\n\t\tdrugName: 'Morphine Sulfate 200 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892648,\r\n\t\tdrugName: 'Morphine Sulfate 200 MG Extended Release Oral Tablet [MS Contin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892652,\r\n\t\tdrugName: '20 ML Morphine Sulfate 25 MG/ML Injection [Infumorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 892658,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892660,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Extended Release Oral Tablet [MS Contin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892669,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892672,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 892678,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894780,\r\n\t\tdrugName: 'Morphine Sulfate 4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 894801,\r\n\t\tdrugName: 'Morphine Sulfate 50 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894803,\r\n\t\tdrugName: 'Morphine Sulfate 50 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894805,\r\n\t\tdrugName: 'Morphine Sulfate 60 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894807,\r\n\t\tdrugName: 'Morphine Sulfate 5 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894813,\r\n\t\tdrugName: 'Morphine Sulfate 60 MG Extended Release Oral Tablet [MS Contin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894814,\r\n\t\tdrugName: 'Morphine Sulfate 80 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894816,\r\n\t\tdrugName: 'Morphine Sulfate 80 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894911,\r\n\t\tdrugName: '0.7 ML Morphine Sulfate 14.3 MG/ML Auto-Injector',\r\n\t\tdoseFormCode: 1649570,\r\n\t\tdoseFormName: 'Auto-Injector',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '14.3 MG/ML',\r\n\t\tstrengthValue: 14.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 894912,\r\n\t\tdrugName: '1 ML Morphine Sulfate 10 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 894914,\r\n\t\tdrugName: '1 ML Morphine Sulfate 8 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '8 MG/ML',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 894918,\r\n\t\tdrugName: '12 HR Morphine Sulfate 200 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894933,\r\n\t\tdrugName: 'Morphine Sulfate 150 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894942,\r\n\t\tdrugName: '24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '45 MG',\r\n\t\tstrengthValue: 45.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894970,\r\n\t\tdrugName: '24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 894986,\r\n\t\tdrugName: 'Morphine Sulfate 0.4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895014,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895016,\r\n\t\tdrugName: 'Morphine Sulfate 10 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895022,\r\n\t\tdrugName: 'Morphine Sulfate 100 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895185,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895194,\r\n\t\tdrugName: 'Morphine Sulfate 15 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG/ML',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895199,\r\n\t\tdrugName: 'Morphine Sulfate 2 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895201,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895202,\r\n\t\tdrugName: 'Morphine Sulfate 20 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895206,\r\n\t\tdrugName: 'Morphine Sulfate 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895208,\r\n\t\tdrugName: 'Morphine Sulfate 3 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '3 MG/ML',\r\n\t\tstrengthValue: 3.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895213,\r\n\t\tdrugName: 'Morphine Sulfate 30 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895215,\r\n\t\tdrugName: 'Morphine Sulfate 35 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '35 MG',\r\n\t\tstrengthValue: 35.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895217,\r\n\t\tdrugName: 'Morphine Sulfate 5 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895219,\r\n\t\tdrugName: 'Morphine Sulfate 5 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG/ML',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895221,\r\n\t\tdrugName: 'Morphine Sulfate 50 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895227,\r\n\t\tdrugName: 'Morphine Sulfate 50 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895233,\r\n\t\tdrugName: 'Morphine Sulfate 6 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '6 MG/ML',\r\n\t\tstrengthValue: 6.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895238,\r\n\t\tdrugName: 'Morphine Sulfate 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '6 MG/ML',\r\n\t\tstrengthValue: 6.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895240,\r\n\t\tdrugName: 'Morphine Sulfate 6.67 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '6.67 MG/ML',\r\n\t\tstrengthValue: 6.67,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 895247,\r\n\t\tdrugName: 'Morphine Sulfate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895248,\r\n\t\tdrugName: 'Morphine Sulfate 75 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895861,\r\n\t\tdrugName: 'Morphine Sulfate 25 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '25 MG',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895867,\r\n\t\tdrugName: 'Morphine hydrochloride 40 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895869,\r\n\t\tdrugName: 'Morphine Sulfate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 895871,\r\n\t\tdrugName: 'Morphine Sulfate 50 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897653,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897655,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 1 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897657,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897658,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 1 MG/ML Oral Solution [Dilaudid]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897677,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '12 MG',\r\n\t\tstrengthValue: 12.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897687,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897696,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 2 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897698,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 2 MG Oral Tablet [Dilaudid]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897702,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 4 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897704,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 4 MG Oral Tablet [Dilaudid]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897710,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 8 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897712,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 8 MG Oral Tablet [Dilaudid]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897730,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 24 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '24 MG',\r\n\t\tstrengthValue: 24.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897737,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '32 MG',\r\n\t\tstrengthValue: 32.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897745,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 2 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897747,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 2 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897749,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 3 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '3 MG',\r\n\t\tstrengthValue: 3.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 897753,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 4 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897755,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 4 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897756,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897757,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897758,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 4 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 897771,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 1 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 898004,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 1.3 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1.3 MG',\r\n\t\tstrengthValue: 1.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 898138,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 2.6 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2.6 MG',\r\n\t\tstrengthValue: 2.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 898139,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 3 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '3 MG',\r\n\t\tstrengthValue: 3.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 898612,\r\n\t\tdrugName: '12 HR Hydromorphone Hydrochloride 3 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '3 MG',\r\n\t\tstrengthValue: 3.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 898624,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 30 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 899125,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1.2 MG/ML / Phenylephrine 1 MG/ML / Pyrilamine 2.4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1.2 MG/ML',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 902729,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '12 MG',\r\n\t\tstrengthValue: 12.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 902733,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 12 MG Extended Release Oral Tablet [Exalgo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '12 MG',\r\n\t\tstrengthValue: 12.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 902736,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 902738,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 16 MG Extended Release Oral Tablet [Exalgo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 902741,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 902743,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 8 MG Extended Release Oral Tablet [Exalgo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 904870,\r\n\t\tdrugName: '168 HR Buprenorphine 0.01 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.01 MG/HR',\r\n\t\tstrengthValue: 0.01,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 904874,\r\n\t\tdrugName: '168 HR Buprenorphine 0.01 MG/HR Transdermal System [BuTrans]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.01 MG/HR',\r\n\t\tstrengthValue: 0.01,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 904876,\r\n\t\tdrugName: '168 HR Buprenorphine 0.02 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.02 MG/HR',\r\n\t\tstrengthValue: 0.02,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 904878,\r\n\t\tdrugName: '168 HR Buprenorphine 0.02 MG/HR Transdermal System [BuTrans]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.02 MG/HR',\r\n\t\tstrengthValue: 0.02,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 904880,\r\n\t\tdrugName: '168 HR Buprenorphine 0.005 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.005 MG/HR',\r\n\t\tstrengthValue: 0.005,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 904882,\r\n\t\tdrugName: '168 HR Buprenorphine 0.005 MG/HR Transdermal System [BuTrans]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.005 MG/HR',\r\n\t\tstrengthValue: 0.005,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 977874,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977876,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 10 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977894,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977896,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 15 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977902,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977904,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 20 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977909,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977911,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 30 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977915,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977917,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 40 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977923,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977925,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 5 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977929,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977931,\r\n\t\tdrugName: '12 HR Oxymorphone Hydrochloride 7.5 MG Extended Release Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977935,\r\n\t\tdrugName: '1 ML Oxymorphone Hydrochloride 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 977937,\r\n\t\tdrugName: '1 ML Oxymorphone Hydrochloride 1 MG/ML Injection [Opana]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 977939,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977940,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 5 MG Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977942,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977943,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 10 MG Oral Tablet [Opana]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 977971,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 1.5 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 977974,\r\n\t\tdrugName: 'Oxymorphone Hydrochloride 5 MG Rectal Suppository',\r\n\t\tdoseFormCode: 316978,\r\n\t\tdoseFormName: 'Rectal Suppository',\r\n\t\tingredientCode: 7814,\r\n\t\tingredientName: 'Oxymorphone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 991147,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 991149,\r\n\t\tdrugName: 'Methadone Hydrochloride 10 MG/ML Oral Solution [Methadose]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 6813,\r\n\t\tingredientName: 'Methadone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 991486,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 992656,\r\n\t\tdrugName: 'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 992668,\r\n\t\tdrugName: 'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 992675,\r\n\t\tdrugName: 'homatropine methylbromide 0.3 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Hydromet]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 992733,\r\n\t\tdrugName: 'homatropine methylbromide 1.5 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Tussigon]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993755,\r\n\t\tdrugName: 'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2.4 MG/ML',\r\n\t\tstrengthValue: 2.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 993763,\r\n\t\tdrugName: 'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2.4 MG/ML',\r\n\t\tstrengthValue: 2.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 993767,\r\n\t\tdrugName: 'Acetaminophen 24 MG/ML / Codeine Phosphate 2.4 MG/ML Oral Suspension [Capital and Codeine]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2.4 MG/ML',\r\n\t\tstrengthValue: 2.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 993770,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Codeine Phosphate 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993781,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993837,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Codeine Phosphate 30 MG Oral Tablet [Tylenol with Codeine]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993890,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993892,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Codeine Phosphate 60 MG Oral Tablet [Tylenol with Codeine]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993924,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993926,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Chlorpheniramine 2 MG / Codeine Phosphate 16 MG / Phenylephrine 10 MG Oral Capsule [Colrex]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 993943,\r\n\t\tdrugName: 'Acetaminophen 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994043,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994045,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 15 MG Oral Tablet [Codrix]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994046,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994048,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Tablet [Codrix]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994049,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994051,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 60 MG Oral Tablet [Codrix]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994226,\r\n\t\tdrugName: 'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994228,\r\n\t\tdrugName: 'Aspirin 325 MG / Carisoprodol 200 MG / Codeine Phosphate 16 MG Oral Tablet [Soma Compound with Codeine]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994237,\r\n\t\tdrugName: 'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994239,\r\n\t\tdrugName: 'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Ascomp]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994277,\r\n\t\tdrugName: 'Aspirin 325 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fiorinal with Codeine]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 994289,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.27 MG/ML / Codeine Phosphate 1.27 MG/ML / Pseudoephedrine Hydrochloride 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.27 MG/ML',\r\n\t\tstrengthValue: 1.27,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 994402,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 994404,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Mar-cof BP]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995041,\r\n\t\tdrugName: 'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995043,\r\n\t\tdrugName: 'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995062,\r\n\t\tdrugName: 'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995064,\r\n\t\tdrugName: 'Chlorpheniramine 0.2 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995065,\r\n\t\tdrugName: 'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995067,\r\n\t\tdrugName: 'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 3.33 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995068,\r\n\t\tdrugName: 'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995070,\r\n\t\tdrugName: 'Chlorpheniramine 0.222 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995071,\r\n\t\tdrugName: 'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995073,\r\n\t\tdrugName: 'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995075,\r\n\t\tdrugName: 'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995077,\r\n\t\tdrugName: 'Chlorpheniramine 0.25 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 0.375 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995079,\r\n\t\tdrugName: 'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995081,\r\n\t\tdrugName: 'Chlorpheniramine 0.266 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995082,\r\n\t\tdrugName: 'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995084,\r\n\t\tdrugName: 'Chlorpheniramine 0.267 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995086,\r\n\t\tdrugName: 'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995088,\r\n\t\tdrugName: 'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 4.29 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995093,\r\n\t\tdrugName: 'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995095,\r\n\t\tdrugName: 'Chlorpheniramine 0.286 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995108,\r\n\t\tdrugName: 'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995110,\r\n\t\tdrugName: 'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 5 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995116,\r\n\t\tdrugName: 'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995118,\r\n\t\tdrugName: 'Chlorpheniramine 0.333 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995120,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995122,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML / Pseudoephedrine 6 MG/ML Oral Suspension [Zodryl DAC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995123,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995125,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1 MG/ML Oral Suspension [Zodryl AC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995128,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995132,\r\n\t\tdrugName: 'Chlorpheniramine 0.4 MG/ML / Codeine Phosphate 1.8 MG/ML Oral Solution [Z Tuss AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995211,\r\n\t\tdrugName: 'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995213,\r\n\t\tdrugName: 'Chlorpheniramine 4 MG / Codeine Phosphate 10 MG Oral Tablet [Cotab A]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995214,\r\n\t\tdrugName: 'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995216,\r\n\t\tdrugName: 'Chlorpheniramine 4 MG / Codeine Phosphate 20 MG Oral Tablet [Cotab AX]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995226,\r\n\t\tdrugName: 'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995438,\r\n\t\tdrugName: 'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.26 MG/ML',\r\n\t\tstrengthValue: 1.26,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995440,\r\n\t\tdrugName: 'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [M-Clear WC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.26 MG/ML',\r\n\t\tstrengthValue: 1.26,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995441,\r\n\t\tdrugName: 'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995443,\r\n\t\tdrugName: 'Codeine Phosphate 1.5 MG/ML / Guaifenesin 45 MG/ML Oral Solution [Mar-cof CG]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995447,\r\n\t\tdrugName: 'Codeine Phosphate 1.8 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995450,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995453,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995455,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Phenylephrine 10 MG Oral Tablet [Maxiphen CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995476,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995478,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG Oral Tablet [Allfen CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995483,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995868,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995872,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheratussin]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995936,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 300 MG Oral Tablet [Brontex]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 995940,\r\n\t\tdrugName: 'Codeine Phosphate 0.5 MG/ML / Guaifenesin 15 MG/ML Oral Solution [Brontex]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995956,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Cheracol with Codeine]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995983,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995985,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Biotussin]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 995993,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Cheratussin DAC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996253,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Nucofed Expectorant]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996263,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine Expectorant]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996462,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Guiatuss AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996481,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Mytussin AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996484,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Robafen AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996512,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 60 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996580,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996584,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1 MG/ML Oral Solution [Zotex C]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996621,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996623,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [Ala-Hist AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996627,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996629,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution [Notuss PE]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996636,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Pyrilamine Maleate 3 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996640,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996648,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Pseudodine C]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996650,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Triacin C]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996706,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996708,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Maxiphen CDX]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996710,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996712,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996714,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996716,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996718,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996720,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996722,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996724,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996725,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996727,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Guaifenesin 400 MG Oral Tablet [Allfen CDX]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996728,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996730,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG Oral Capsule [Nucofed]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996734,\r\n\t\tdrugName: 'Codeine Phosphate 5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '5 MG/ML',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996736,\r\n\t\tdrugName: 'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '9 MG',\r\n\t\tstrengthValue: 9.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996738,\r\n\t\tdrugName: 'Codeine Phosphate 9 MG / Guaifenesin 200 MG Oral Capsule [M-Clear WC]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '9 MG',\r\n\t\tstrengthValue: 9.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996757,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Promethazine Hydrochloride 1.25 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 996976,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 12.8 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '12.8 MG',\r\n\t\tstrengthValue: 12.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996978,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 13.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '13.5 MG',\r\n\t\tstrengthValue: 13.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996979,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 30 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996981,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996982,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 8 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996983,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Codeine Phosphate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996988,\r\n\t\tdrugName: 'Aspirin 300 MG / Codeine Phosphate 8 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996991,\r\n\t\tdrugName: 'Aspirin 325 MG / Codeine Phosphate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996994,\r\n\t\tdrugName: 'Aspirin 325 MG / Codeine Phosphate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 996998,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.27 MG/ML',\r\n\t\tstrengthValue: 1.27,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997008,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997014,\r\n\t\tdrugName: 'Codeine Phosphate 0.6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '0.6 MG/ML',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997019,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Kaolin 300 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997160,\r\n\t\tdrugName: 'Codeine Phosphate 1.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML / Pyrilamine Maleate 1.67 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997164,\r\n\t\tdrugName: 'Codeine Phosphate 12.5 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '12.5 MG',\r\n\t\tstrengthValue: 12.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997165,\r\n\t\tdrugName: 'Codeine Phosphate 12.8 MG / Ibuprofen 200 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '12.8 MG',\r\n\t\tstrengthValue: 12.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997169,\r\n\t\tdrugName: 'Codeine Phosphate 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997170,\r\n\t\tdrugName: 'Codeine sulfate 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997175,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997272,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997280,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Ibuprofen 300 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997284,\r\n\t\tdrugName: 'Codeine Phosphate 3 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '3 MG/ML',\r\n\t\tstrengthValue: 3.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997285,\r\n\t\tdrugName: 'Codeine Phosphate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997287,\r\n\t\tdrugName: 'Codeine sulfate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997289,\r\n\t\tdrugName: 'Codeine Phosphate 30 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997296,\r\n\t\tdrugName: 'Codeine sulfate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997301,\r\n\t\tdrugName: 'Codeine Phosphate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 997303,\r\n\t\tdrugName: 'Codeine Phosphate 60 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '60 MG/ML',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 997398,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 998212,\r\n\t\tdrugName: '1 ML Morphine Sulfate 2 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 998213,\r\n\t\tdrugName: '1 ML Morphine Sulfate 4 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 999729,\r\n\t\tdrugName: 'Acetaminophen 250 MG / tramadol hydrochloride 50 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010600,\r\n\t\tdrugName: 'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010603,\r\n\t\tdrugName: 'Buprenorphine 2 MG / Naloxone 0.5 MG Oral Strip [Suboxone]',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010604,\r\n\t\tdrugName: 'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010606,\r\n\t\tdrugName: 'Buprenorphine 8 MG / Naloxone 2 MG Oral Strip [Suboxone]',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010608,\r\n\t\tdrugName: 'Buprenorphine 2 MG / Naloxone 0.5 MG Sublingual Tablet [Suboxone]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2 MG',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1010609,\r\n\t\tdrugName: 'Buprenorphine 8 MG / Naloxone 2 MG Sublingual Tablet [Suboxone]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1012727,\r\n\t\tdrugName: 'Carbinoxamine maleate 0.4 MG/ML / HYDROcodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 1151137,\r\n\t\tdoseFormName: 'Oral Liquid Product',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'HYDROcodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1014599,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1014615,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1014632,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1037259,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1042693,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1043650,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML / Triprolidine Hydrochloride 0.25 MG/ML Oral Solution [Poly Hist NC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1044427,\r\n\t\tdrugName: 'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.667 MG/ML',\r\n\t\tstrengthValue: 0.667,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049214,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049216,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Endocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049221,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049223,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Endocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049225,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049227,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Endocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049233,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049251,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049260,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049267,\r\n\t\tdrugName: 'Acetaminophen 400 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049270,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049502,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049504,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049543,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049545,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049557,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 160 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '160 MG',\r\n\t\tstrengthValue: 160.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049563,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049565,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049574,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049576,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049580,\r\n\t\tdrugName: 'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049582,\r\n\t\tdrugName: 'Acetaminophen 65 MG/ML / Oxycodone Hydrochloride 1 MG/ML Oral Solution [Roxicet]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049584,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049586,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049589,\r\n\t\tdrugName: 'Ibuprofen 400 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049593,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049595,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049599,\r\n\t\tdrugName: '12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049601,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet [Oxycontin]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049604,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049611,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049613,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 15 MG Oral Tablet [Roxicodone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049615,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049618,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049620,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 30 MG Oral Tablet [Roxicodone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049621,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049623,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicodone]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049625,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049635,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049637,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049640,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049642,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049647,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049650,\r\n\t\tdrugName: 'Acetaminophen 650 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Percocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049651,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049655,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Xolox]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049658,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049683,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049686,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049691,\r\n\t\tdrugName: 'Aspirin 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049696,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049709,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049717,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 10 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049719,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049720,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 10 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1049721,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 20 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1049727,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1050409,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 20 MG/ML Oral Solution [Oxyfast]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1050490,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Roxicet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053647,\r\n\t\tdrugName: 'Fentanyl 0.1 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053651,\r\n\t\tdrugName: 'Fentanyl 0.1 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053652,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053654,\r\n\t\tdrugName: 'Fentanyl 0.2 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053655,\r\n\t\tdrugName: 'Fentanyl 0.3 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053657,\r\n\t\tdrugName: 'Fentanyl 0.3 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053658,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053660,\r\n\t\tdrugName: 'Fentanyl 0.4 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053661,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053663,\r\n\t\tdrugName: 'Fentanyl 0.6 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053664,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1053666,\r\n\t\tdrugName: 'Fentanyl 0.8 MG Sublingual Tablet [Abstral]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1086310,\r\n\t\tdrugName: '24 HR Morphine Sulfate 75 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1086926,\r\n\t\tdrugName: 'Codeine Phosphate 1.26 MG/ML / Guaifenesin 20 MG/ML Oral Solution [Relcof C]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.26 MG/ML',\r\n\t\tstrengthValue: 1.26,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1087389,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 4 MG / HYDROCODONE POLISTIREX 5 MG Extended Release Oral Capsule [TussiCaps]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1087427,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 8 MG / HYDROCODONE POLISTIREX 10 MG Extended Release Oral Capsule [TussiCaps]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1087459,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1087463,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 1.6 MG/ML / HYDROCODONE POLISTIREX 2 MG/ML Extended Release Suspension [Tussionex]',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088951,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088953,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088963,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088965,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.33 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088968,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088970,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 3.75 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088975,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1088977,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089021,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089023,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.29 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089025,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089027,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 5 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089028,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089030,\r\n\t\tdrugName: 'Codeine Phosphate 1 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Suspension [Zodryl DEC]',\r\n\t\tdoseFormCode: 316969,\r\n\t\tdoseFormName: 'Oral Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1089055,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089057,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 20 MG Oral Tablet [Ambifed-G CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089058,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089060,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet [Ambifed CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089061,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089063,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 40 MG Oral Tablet [Maxifed-G CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089070,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1089072,\r\n\t\tdrugName: 'Codeine Phosphate 10 MG / Guaifenesin 400 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [Maxifed CD]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1098906,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1099711,\r\n\t\tdrugName: 'Codeine Phosphate 20 MG / Pseudoephedrine Hydrochloride 60 MG / Triprolidine Hydrochloride 4 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1112220,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1112224,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Zutripro]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113048,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113050,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Notuss-NXD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113051,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113053,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 1.88 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Notuss-NX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113313,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxecta]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1113314,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 7.5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1113316,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxecta]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1113417,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113437,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Phenylhistine DH]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1113998,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114002,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML Oral Solution [Codar AR]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114003,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114026,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114030,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Codar GF]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114110,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114334,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114338,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Rezira]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1114878,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1115573,\r\n\t\tdrugName: 'Fentanyl 0.1 MG/ACTUAT Nasal Spray',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/ACTUAT',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1115575,\r\n\t\tdrugName: 'Fentanyl 0.1 MG/ACTUAT Nasal Spray [Lazanda]',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/ACTUAT',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1115577,\r\n\t\tdrugName: 'Fentanyl 0.4 MG/ACTUAT Nasal Spray',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG/ACTUAT',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1115579,\r\n\t\tdrugName: 'Fentanyl 0.4 MG/ACTUAT Nasal Spray [Lazanda]',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG/ACTUAT',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1145972,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Codar D]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1147395,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Xodol]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1147709,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 4.5 MG/ML Oral Solution [Lortuss EX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1148478,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148482,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 100 MG Extended Release Oral Capsule [ConZip]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148485,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148487,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 200 MG Extended Release Oral Capsule [ConZip]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148489,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148491,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 300 MG Extended Release Oral Capsule [ConZip]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148797,\r\n\t\tdrugName: '12 HR tapentadol 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148800,\r\n\t\tdrugName: '12 HR tapentadol 150 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148803,\r\n\t\tdrugName: '12 HR tapentadol 200 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148807,\r\n\t\tdrugName: '12 HR tapentadol 250 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '250 MG',\r\n\t\tstrengthValue: 250.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1148809,\r\n\t\tdrugName: '12 HR tapentadol 50 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1149367,\r\n\t\tdrugName: '12 HR tapentadol 100 MG Extended Release Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1149370,\r\n\t\tdrugName: '12 HR tapentadol 150 MG Extended Release Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1149373,\r\n\t\tdrugName: '12 HR tapentadol 200 MG Extended Release Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1149376,\r\n\t\tdrugName: '12 HR tapentadol 250 MG Extended Release Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '250 MG',\r\n\t\tstrengthValue: 250.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1149378,\r\n\t\tdrugName: '12 HR tapentadol 50 MG Extended Release Oral Tablet [Nucynta]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1190201,\r\n\t\tdrugName: 'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1190284,\r\n\t\tdrugName: '24 HR Morphine Sulfate 45 MG Extended Release Oral Capsule [Avinza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '45 MG',\r\n\t\tstrengthValue: 45.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1190580,\r\n\t\tdrugName: 'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.2 MG/ML',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1190587,\r\n\t\tdrugName: 'Codeine Phosphate 1.2 MG/ML / Dexbrompheniramine maleate 0.133 MG/ML / Pseudoephedrine Hydrochloride 4 MG/ML Oral Solution [M-End Max D]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.2 MG/ML',\r\n\t\tstrengthValue: 1.2,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1190785,\r\n\t\tdrugName: 'Atropine Sulfate 0.6 MG/ML / Morphine Sulfate 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1232113,\r\n\t\tdrugName: '1 ML Morphine Sulfate 15 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG/ML',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1233685,\r\n\t\tdrugName: 'Fentanyl 0.003 MG/ML / Ropivacaine hydrochloride 2.5 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.003 MG/ML',\r\n\t\tstrengthValue: 0.003,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1233686,\r\n\t\tdrugName: 'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 1 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.004 MG/ML',\r\n\t\tstrengthValue: 0.004,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1233687,\r\n\t\tdrugName: 'Fentanyl 0.004 MG/ML / Ropivacaine hydrochloride 2 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.004 MG/ML',\r\n\t\tstrengthValue: 0.004,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1233700,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 0.01 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '0.01 MG/ML',\r\n\t\tstrengthValue: 0.01,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1234871,\r\n\t\tdrugName: 'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1234872,\r\n\t\tdrugName: 'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1234941,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '0.6 MG/ML',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1234957,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / dihydrocodeine bitartrate 0.6 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution [ColdCough PD]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '0.6 MG/ML',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1234976,\r\n\t\tdrugName: 'Aspirin 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Synalgos-DC]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1234978,\r\n\t\tdrugName: 'Acetaminophen 712.8 MG / Caffeine 60 MG / dihydrocodeine bitartrate 32 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '32 MG',\r\n\t\tstrengthValue: 32.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1234990,\r\n\t\tdrugName: 'Acetaminophen 356.4 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule [Trezix]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1234999,\r\n\t\tdrugName: 'Acetaminophen 500 MG / dihydrocodeine bitartrate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1235009,\r\n\t\tdrugName: 'Acetaminophen 500 MG / dihydrocodeine bitartrate 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1235011,\r\n\t\tdrugName: 'Acetaminophen 500 MG / dihydrocodeine bitartrate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1235862,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1236113,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1236115,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 1.5 MG/ML / Guaifenesin 10 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Poly Tussin EX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '1.5 MG/ML',\r\n\t\tstrengthValue: 1.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1236179,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 120 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '120 MG',\r\n\t\tstrengthValue: 120.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1236181,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1236182,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1236184,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 40 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1236186,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 50 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1236188,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1236190,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 90 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '90 MG',\r\n\t\tstrengthValue: 90.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1236239,\r\n\t\tdrugName: 'dihydrocodeine bitartrate 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1237050,\r\n\t\tdrugName: 'Fentanyl 0.1 MG/ACTUAT Mucosal Spray',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/ACTUAT',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237055,\r\n\t\tdrugName: 'Fentanyl 0.1 MG/ACTUAT Mucosal Spray [Subsys]',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.1 MG/ACTUAT',\r\n\t\tstrengthValue: 0.1,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237057,\r\n\t\tdrugName: 'Fentanyl 0.2 MG/ACTUAT Mucosal Spray',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG/ACTUAT',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237059,\r\n\t\tdrugName: 'Fentanyl 0.2 MG/ACTUAT Mucosal Spray [Subsys]',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.2 MG/ACTUAT',\r\n\t\tstrengthValue: 0.2,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237060,\r\n\t\tdrugName: 'Fentanyl 0.4 MG/ACTUAT Mucosal Spray',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG/ACTUAT',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237062,\r\n\t\tdrugName: 'Fentanyl 0.4 MG/ACTUAT Mucosal Spray [Subsys]',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.4 MG/ACTUAT',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237064,\r\n\t\tdrugName: 'Fentanyl 0.6 MG/ACTUAT Mucosal Spray',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG/ACTUAT',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237066,\r\n\t\tdrugName: 'Fentanyl 0.6 MG/ACTUAT Mucosal Spray [Subsys]',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.6 MG/ACTUAT',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237068,\r\n\t\tdrugName: 'Fentanyl 0.8 MG/ACTUAT Mucosal Spray',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG/ACTUAT',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1237070,\r\n\t\tdrugName: 'Fentanyl 0.8 MG/ACTUAT Mucosal Spray [Subsys]',\r\n\t\tdoseFormCode: 346163,\r\n\t\tdoseFormName: 'Mucosal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.8 MG/ACTUAT',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1242106,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 100 MG/ML Cartridge [Demerol]',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1242503,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 25 MG/ML Cartridge [Demerol]',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1242558,\r\n\t\tdrugName: 'Chlorcyclizine hydrochloride 2.5 MG/ML / Codeine Phosphate 1.8 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Statuss Green Reformulated Jan 2012]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1244754,\r\n\t\tdrugName: 'Guaifenesin 20 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1244921,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.266 MG/ML / Codeine Phosphate 1.27 MG/ML / Phenylephrine Hydrochloride 0.666 MG/ML Oral Solution [M-End PE]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.27 MG/ML',\r\n\t\tstrengthValue: 1.27,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1248039,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Entuss-D Liquid]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1248040,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1248044,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Nalex Expectorant]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1248046,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 1 MG/ML / Pseudoephedrine Hydrochloride 12 MG/ML Oral Solution [Vanacon]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1248115,\r\n\t\tdrugName: '24 HR tramadol hydrochloride 150 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1294356,\r\n\t\tdrugName: 'Bromodiphenhydramine hydrochloride 2.5 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1294380,\r\n\t\tdrugName: 'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.7 MG/ML',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1294382,\r\n\t\tdrugName: 'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.7 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.7 MG/ML',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1294383,\r\n\t\tdrugName: 'Diphenhydramine Hydrochloride 2.5 MG/ML / Hydrocodone Bitartrate 0.4 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.4 MG/ML',\r\n\t\tstrengthValue: 0.4,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1297584,\r\n\t\tdrugName: 'Diphenhydramine Tannate 5 MG/ML / hydrocodone tannate 0.7 MG/ML / Phenylephrine Tannate 1.5 MG/ML Extended Release Suspension [Dytan-HC]',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.7 MG/ML',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1297649,\r\n\t\tdrugName: 'Codeine sulfate 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '6 MG/ML',\r\n\t\tstrengthValue: 6.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1302739,\r\n\t\tdrugName: 'Butorphanol 10 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1302741,\r\n\t\tdrugName: 'Butorphanol 10 MG/ML Injectable Solution [Dolorex Solution]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1303729,\r\n\t\tdrugName: 'Morphine Sulfate 130 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '130 MG',\r\n\t\tstrengthValue: 130.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303731,\r\n\t\tdrugName: 'Morphine Sulfate 130 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '130 MG',\r\n\t\tstrengthValue: 130.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303733,\r\n\t\tdrugName: 'Morphine Sulfate 150 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303736,\r\n\t\tdrugName: 'Morphine Sulfate 40 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303738,\r\n\t\tdrugName: 'Morphine Sulfate 40 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303740,\r\n\t\tdrugName: 'Morphine Sulfate 70 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '70 MG',\r\n\t\tstrengthValue: 70.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1303742,\r\n\t\tdrugName: 'Morphine Sulfate 70 MG Extended Release Oral Capsule [Kadian]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '70 MG',\r\n\t\tstrengthValue: 70.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1306898,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '32 MG',\r\n\t\tstrengthValue: 32.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1306900,\r\n\t\tdrugName: '24 HR Hydromorphone Hydrochloride 32 MG Extended Release Oral Tablet [Exalgo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '32 MG',\r\n\t\tstrengthValue: 32.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1307056,\r\n\t\tdrugName: 'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '4 MG',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1307058,\r\n\t\tdrugName: 'Buprenorphine 4 MG / Naloxone 1 MG Oral Strip [Suboxone]',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '4 MG',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1307061,\r\n\t\tdrugName: 'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '12 MG',\r\n\t\tstrengthValue: 12.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1307063,\r\n\t\tdrugName: 'Buprenorphine 12 MG / Naloxone 3 MG Oral Strip [Suboxone]',\r\n\t\tdoseFormCode: 704866,\r\n\t\tdoseFormName: 'Oral Strip',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '12 MG',\r\n\t\tstrengthValue: 12.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1308438,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1308440,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML Oral Solution [Nalex AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1310202,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Vicodin]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1310212,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Vicodin]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1310270,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Vicodin]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1310927,\r\n\t\tdrugName: 'Butorphanol 10 MG/ML Injectable Solution [Butorphic]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1313294,\r\n\t\tdrugName: 'Guaifenesin 10 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Phenylephrine Hydrochloride 1.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1356315,\r\n\t\tdrugName: 'tapentadol 20 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1356319,\r\n\t\tdrugName: 'tapentadol 20 MG/ML Oral Solution [Nucynta]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 787390,\r\n\t\tingredientName: 'tapentadol',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1356797,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356799,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356800,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356802,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 10 MG Oral Tablet [BroveX CB]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356804,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356806,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG / Phenylephrine Hydrochloride 10 MG Oral Tablet [Brovex PBC]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356807,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356809,\r\n\t\tdrugName: 'Brompheniramine Maleate 4 MG / Codeine Phosphate 20 MG Oral Tablet [BroveX CB]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1356835,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.6 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1357402,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.4 MG/ML / Codeine Phosphate 2 MG/ML / Phenylpropanolamine Hydrochloride 2.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1357940,\r\n\t\tdrugName: 'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.8 MG/ML',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1357942,\r\n\t\tdrugName: 'Dexchlorpheniramine maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.8 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution [Zotex HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.8 MG/ML',\r\n\t\tstrengthValue: 0.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1358753,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1366873,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1366875,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 5 MG / Pseudoephedrine Hydrochloride 60 MG Oral Tablet [P-V-Tussin]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1366879,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.4 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [P-V-Tussin Syrup]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1368072,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Tusnel C]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1372265,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1372873,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.8 MG/ML / Hydrocodone Bitartrate 1 MG/ML Oral Solution [Vituz]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1424295,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Chlorpheniramine Maleate 2 MG / Codeine Phosphate 8 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1424297,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 6 MG / Pseudoephedrine Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '6 MG',\r\n\t\tstrengthValue: 6.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1431076,\r\n\t\tdrugName: 'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.4 MG',\r\n\t\tstrengthValue: 1.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1431083,\r\n\t\tdrugName: 'Buprenorphine 1.4 MG / Naloxone 0.36 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.4 MG',\r\n\t\tstrengthValue: 1.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1431102,\r\n\t\tdrugName: 'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '5.7 MG',\r\n\t\tstrengthValue: 5.7,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1431104,\r\n\t\tdrugName: 'Buprenorphine 5.7 MG / Naloxone 1.4 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '5.7 MG',\r\n\t\tstrengthValue: 5.7,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1431286,\r\n\t\tdrugName: 'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1432969,\r\n\t\tdrugName: '168 HR Buprenorphine 0.015 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.015 MG/HR',\r\n\t\tstrengthValue: 0.015,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1432971,\r\n\t\tdrugName: '168 HR Buprenorphine 0.015 MG/HR Transdermal System [BuTrans]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.015 MG/HR',\r\n\t\tstrengthValue: 0.015,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1433251,\r\n\t\tdrugName: '0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1433802,\r\n\t\tdrugName: 'Acetaminophen 300 MG / butalbital 50 MG / Caffeine 40 MG / Codeine Phosphate 30 MG Oral Capsule [Fioricet with Codeine]',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1440003,\r\n\t\tdrugName: 'Codeine Phosphate 1.8 MG/ML / Dexchlorpheniramine maleate 0.2 MG/ML / Phenylephrine Hydrochloride 1 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1442445,\r\n\t\tdrugName: 'Acetaminophen 20 MG/ML / Hydrocodone Bitartrate 0.667 MG/ML Oral Solution [Lortab]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.667 MG/ML',\r\n\t\tstrengthValue: 0.667,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1442790,\r\n\t\tdrugName: '1 ML Morphine Sulfate 5 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG/ML',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1487288,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Oxycodone Hydrochloride 2.5 MG Oral Tablet [Endocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1487611,\r\n\t\tdrugName: 'Fentanyl 50 MG/ML Topical Solution',\r\n\t\tdoseFormCode: 316986,\r\n\t\tdoseFormName: 'Topical Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1487616,\r\n\t\tdrugName: 'Fentanyl 50 MG/ML Topical Solution [Recuvyra]',\r\n\t\tdoseFormCode: 316986,\r\n\t\tdoseFormName: 'Topical Solution',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1488634,\r\n\t\tdrugName: 'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension',\r\n\t\tdoseFormCode: 316950,\r\n\t\tdoseFormName: 'Injectable Suspension',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.3 MG/ML',\r\n\t\tstrengthValue: 1.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1488639,\r\n\t\tdrugName: 'Buprenorphine hydrochloride 1.3 MG/ML Injectable Suspension [Animalgesics]',\r\n\t\tdoseFormCode: 316950,\r\n\t\tdoseFormName: 'Injectable Suspension',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.3 MG/ML',\r\n\t\tstrengthValue: 1.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1489991,\r\n\t\tdrugName: 'Butorphanol 10 MG/ML Injectable Solution [Torbugesic]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1491832,\r\n\t\tdrugName: '12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1491834,\r\n\t\tdrugName: '12 HR Acetaminophen 325 MG / Oxycodone Hydrochloride 7.5 MG Extended Release Oral Tablet [Xartemis]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1492671,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lorcet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1492673,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lorcet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1492675,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lorcet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1495472,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 10 MG Oral Tablet [Lortab]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1495474,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 5 MG Oral Tablet [Lortab]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1495476,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 7.5 MG Oral Tablet [Lortab]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1535979,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.65 MG/ML',\r\n\t\tstrengthValue: 0.65,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1535981,\r\n\t\tdrugName: 'Chlorpheniramine Maleate 0.5 MG/ML / Hydrocodone Bitartrate 0.65 MG/ML / Phenylephrine Hydrochloride 1.6 MG/ML Oral Solution [Z-Cof HC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.65 MG/ML',\r\n\t\tstrengthValue: 0.65,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1536457,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 8 MG Effervescent Oral Tablet',\r\n\t\tdoseFormCode: 1535727,\r\n\t\tdoseFormName: 'Effervescent Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '8 MG',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1536459,\r\n\t\tdrugName: 'Acetaminophen 500 MG / Codeine Phosphate 30 MG Effervescent Oral Tablet',\r\n\t\tdoseFormCode: 1535727,\r\n\t\tdoseFormName: 'Effervescent Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1537116,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 5 MG Oral Tablet [Primlev]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1537120,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 10 MG Oral Tablet [Primlev]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1537122,\r\n\t\tdrugName: 'Acetaminophen 300 MG / Oxycodone Hydrochloride 7.5 MG Oral Tablet [Primlev]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1541630,\r\n\t\tdrugName: 'Brompheniramine Maleate 0.8 MG/ML / Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1542390,\r\n\t\tdrugName: 'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2.1 MG',\r\n\t\tstrengthValue: 2.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1542396,\r\n\t\tdrugName: 'Buprenorphine 2.1 MG / Naloxone 0.3 MG Buccal Film [Bunavail]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2.1 MG',\r\n\t\tstrengthValue: 2.1,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1542981,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Hydrocodone Bitartrate 2.5 MG Oral Tablet [Verdrocet]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '2.5 MG',\r\n\t\tstrengthValue: 2.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1542988,\r\n\t\tdrugName: 'Hydrocodone Bitartrate 10 MG / Ibuprofen 200 MG Oral Tablet [Xylon]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1542997,\r\n\t\tdrugName: '168 HR Buprenorphine 0.0075 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.0075 MG/HR',\r\n\t\tstrengthValue: 0.0075,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1542999,\r\n\t\tdrugName: '168 HR Buprenorphine 0.0075 MG/HR Transdermal System [BuTrans]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.0075 MG/HR',\r\n\t\tstrengthValue: 0.0075,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1544851,\r\n\t\tdrugName: 'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '4.2 MG',\r\n\t\tstrengthValue: 4.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1544853,\r\n\t\tdrugName: 'Buprenorphine 4.2 MG / Naloxone 0.7 MG Buccal Film [Bunavail]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '4.2 MG',\r\n\t\tstrengthValue: 4.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1544854,\r\n\t\tdrugName: 'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '6.3 MG',\r\n\t\tstrengthValue: 6.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1544856,\r\n\t\tdrugName: 'Buprenorphine 6.3 MG / Naloxone 1 MG Buccal Film [Bunavail]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '6.3 MG',\r\n\t\tstrengthValue: 6.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1545903,\r\n\t\tdrugName: '12 HR Naloxone Hydrochloride 10 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1545907,\r\n\t\tdrugName: '12 HR Naloxone Hydrochloride 20 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1545910,\r\n\t\tdrugName: '12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1546089,\r\n\t\tdrugName: '12 HR Naloxone Hydrochloride 5 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet [Targiniq]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1547607,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 20 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Lortuss EX]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1594650,\r\n\t\tdrugName: 'Buprenorphine 1.8 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1594655,\r\n\t\tdrugName: 'Buprenorphine 1.8 MG/ML Injectable Solution [Simbadol]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '1.8 MG/ML',\r\n\t\tstrengthValue: 1.8,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1595214,\r\n\t\tdrugName: 'Codeine Phosphate 1.6 MG/ML / Guaifenesin 40 MG/ML Oral Solution [Ninjacof XG]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '1.6 MG/ML',\r\n\t\tstrengthValue: 1.6,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1595730,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595736,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595740,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595742,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595746,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595748,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595752,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595754,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 60 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595758,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595760,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 80 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595764,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595766,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 100 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595770,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '120 MG',\r\n\t\tstrengthValue: 120.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1595772,\r\n\t\tdrugName: 'Abuse-Deterrent 24 HR Hydrocodone Bitartrate 120 MG Extended Release Oral Tablet [Hysingla]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '120 MG',\r\n\t\tstrengthValue: 120.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1596108,\r\n\t\tdrugName: 'Acetaminophen 320.5 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Capsule',\r\n\t\tdoseFormCode: 316965,\r\n\t\tdoseFormName: 'Oral Capsule',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1597568,\r\n\t\tdrugName: 'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '11.4 MG',\r\n\t\tstrengthValue: 11.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1597570,\r\n\t\tdrugName: 'Buprenorphine 11.4 MG / Naloxone 2.9 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '11.4 MG',\r\n\t\tstrengthValue: 11.4,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1597573,\r\n\t\tdrugName: 'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8.6 MG',\r\n\t\tstrengthValue: 8.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1597575,\r\n\t\tdrugName: 'Buprenorphine 8.6 MG / Naloxone 2.1 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '8.6 MG',\r\n\t\tstrengthValue: 8.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1598284,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Obredon]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1603495,\r\n\t\tdrugName: '72 HR Fentanyl 0.0375 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.0375 MG/HR',\r\n\t\tstrengthValue: 0.0375,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1603498,\r\n\t\tdrugName: '72 HR Fentanyl 0.0625 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.0625 MG/HR',\r\n\t\tstrengthValue: 0.0625,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1603501,\r\n\t\tdrugName: '72 HR Fentanyl 0.0875 MG/HR Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.0875 MG/HR',\r\n\t\tstrengthValue: 0.0875,\r\n\t\tstrengthUnit: 'MG/HR'\r\n\t}, {\r\n\t\tdrugCode: 1650982,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML Oral Solution [Flowtuss]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1651558,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1651564,\r\n\t\tdrugName: 'Guaifenesin 40 MG/ML / Hydrocodone Bitartrate 0.5 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution [Hycofenix]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1652087,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1652093,\r\n\t\tdrugName: '12 HR CHLORPHENIRAMINE POLISTIREX 0.8 MG/ML / CODEINE POLISTIREX 4 MG/ML Extended Release Suspension [Tuzistra]',\r\n\t\tdoseFormCode: 316946,\r\n\t\tdoseFormName: 'Extended Release Suspension',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1655032,\r\n\t\tdrugName: '1 ML Buprenorphine 0.3 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.3 MG/ML',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1655058,\r\n\t\tdrugName: 'Meperidine Hydrochloride 150 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '150 MG',\r\n\t\tstrengthValue: 150.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1655060,\r\n\t\tdrugName: 'Meperidine Hydrochloride 75 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '75 MG',\r\n\t\tstrengthValue: 75.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1661319,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1661325,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Phenylephrine Hydrochloride 2 MG/ML / Triprolidine Hydrochloride 0.5 MG/ML Oral Solution [Histex AC]',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1664448,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 5 MG Oral Tablet [Oxaydo]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1664543,\r\n\t\tdrugName: '12 HR Chlorpheniramine Maleate 8 MG / Codeine Phosphate 54.3 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '54.3 MG',\r\n\t\tstrengthValue: 54.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1664634,\r\n\t\tdrugName: 'Oxycodone Hydrochloride 7.5 MG Oral Tablet [Oxaydo]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '7.5 MG',\r\n\t\tstrengthValue: 7.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1665685,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 100 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665687,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 100 MG/ML Injection [Demerol]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '100 MG/ML',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665690,\r\n\t\tdrugName: '1.5 ML Meperidine Hydrochloride 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665691,\r\n\t\tdrugName: '1.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665697,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665698,\r\n\t\tdrugName: '1 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665699,\r\n\t\tdrugName: '0.5 ML Meperidine Hydrochloride 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665700,\r\n\t\tdrugName: '0.5 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665701,\r\n\t\tdrugName: '2 ML Meperidine Hydrochloride 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1665702,\r\n\t\tdrugName: '2 ML Meperidine Hydrochloride 50 MG/ML Injection [Demerol]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 6754,\r\n\t\tingredientName: 'Meperidine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1666338,\r\n\t\tdrugName: 'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2.9 MG',\r\n\t\tstrengthValue: 2.9,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1666385,\r\n\t\tdrugName: 'Buprenorphine 2.9 MG / Naloxone 0.71 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '2.9 MG',\r\n\t\tstrengthValue: 2.9,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1666831,\r\n\t\tdrugName: 'Fentanyl 0.04 MG Transdermal System',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.04 MG',\r\n\t\tstrengthValue: 0.04,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1666837,\r\n\t\tdrugName: 'Fentanyl 0.04 MG Transdermal System [Ionsys]',\r\n\t\tdoseFormCode: 316987,\r\n\t\tdoseFormName: 'Transdermal System',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.04 MG',\r\n\t\tstrengthValue: 0.04,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716057,\r\n\t\tdrugName: 'Buprenorphine 0.15 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.15 MG',\r\n\t\tstrengthValue: 0.15,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716063,\r\n\t\tdrugName: 'Buprenorphine 0.15 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.15 MG',\r\n\t\tstrengthValue: 0.15,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716065,\r\n\t\tdrugName: 'Buprenorphine 0.3 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716067,\r\n\t\tdrugName: 'Buprenorphine 0.3 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.3 MG',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716069,\r\n\t\tdrugName: 'Buprenorphine 0.45 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.45 MG',\r\n\t\tstrengthValue: 0.45,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716071,\r\n\t\tdrugName: 'Buprenorphine 0.45 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.45 MG',\r\n\t\tstrengthValue: 0.45,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716073,\r\n\t\tdrugName: 'Buprenorphine 0.6 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716075,\r\n\t\tdrugName: 'Buprenorphine 0.6 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.6 MG',\r\n\t\tstrengthValue: 0.6,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716077,\r\n\t\tdrugName: 'Buprenorphine 0.075 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.075 MG',\r\n\t\tstrengthValue: 0.075,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716079,\r\n\t\tdrugName: 'Buprenorphine 0.075 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.075 MG',\r\n\t\tstrengthValue: 0.075,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716081,\r\n\t\tdrugName: 'Buprenorphine 0.75 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.75 MG',\r\n\t\tstrengthValue: 0.75,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716083,\r\n\t\tdrugName: 'Buprenorphine 0.75 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.75 MG',\r\n\t\tstrengthValue: 0.75,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716086,\r\n\t\tdrugName: 'Buprenorphine 0.9 MG Buccal Film',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.9 MG',\r\n\t\tstrengthValue: 0.9,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1716090,\r\n\t\tdrugName: 'Buprenorphine 0.9 MG Buccal Film [Belbuca]',\r\n\t\tdoseFormCode: 858080,\r\n\t\tdoseFormName: 'Buccal Film',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.9 MG',\r\n\t\tstrengthValue: 0.9,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1724276,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 2 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724338,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724340,\r\n\t\tdrugName: '5 ML Hydromorphone Hydrochloride 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724341,\r\n\t\tdrugName: '50 ML Hydromorphone Hydrochloride 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724352,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 250 MG Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '250 MG',\r\n\t\tstrengthValue: 250.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1724354,\r\n\t\tdrugName: 'Hydromorphone Hydrochloride 250 MG Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '250 MG',\r\n\t\tstrengthValue: 250.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1724356,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724358,\r\n\t\tdrugName: '5 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724359,\r\n\t\tdrugName: '50 ML Hydromorphone Hydrochloride 10 MG/ML Injection [Dilaudid]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724383,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 1 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1724644,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 2 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728351,\r\n\t\tdrugName: '1 ML Butorphanol Tartrate 2 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728355,\r\n\t\tdrugName: '2 ML Butorphanol Tartrate 2 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728783,\r\n\t\tdrugName: '10 ML Morphine Sulfate 0.5 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728784,\r\n\t\tdrugName: '10 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728789,\r\n\t\tdrugName: '30 ML Morphine Sulfate 0.5 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728791,\r\n\t\tdrugName: '2 ML Morphine Sulfate 0.5 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728792,\r\n\t\tdrugName: '2 ML Morphine Sulfate 0.5 MG/ML Injection [Astramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '0.5 MG/ML',\r\n\t\tstrengthValue: 0.5,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728800,\r\n\t\tdrugName: '10 ML Morphine Sulfate 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728801,\r\n\t\tdrugName: '10 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728805,\r\n\t\tdrugName: '2 ML Morphine Sulfate 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728806,\r\n\t\tdrugName: '2 ML Morphine Sulfate 1 MG/ML Injection [Astramorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1728999,\r\n\t\tdrugName: '30 ML Morphine Sulfate 1 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1729197,\r\n\t\tdrugName: '1 ML Morphine Sulfate 2 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1729320,\r\n\t\tdrugName: 'Fentanyl 0.3 MG/ACTUAT Nasal Spray',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG/ACTUAT',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1729322,\r\n\t\tdrugName: 'Fentanyl 0.3 MG/ACTUAT Nasal Spray [Lazanda]',\r\n\t\tdoseFormCode: 126542,\r\n\t\tdoseFormName: 'Nasal Spray',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.3 MG/ACTUAT',\r\n\t\tstrengthValue: 0.3,\r\n\t\tstrengthUnit: 'MG/ACTUAT'\r\n\t}, {\r\n\t\tdrugCode: 1731517,\r\n\t\tdrugName: '10 ML Morphine Sulfate 25 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731520,\r\n\t\tdrugName: '4 ML Morphine Sulfate 25 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731522,\r\n\t\tdrugName: '20 ML Morphine Sulfate 25 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '25 MG/ML',\r\n\t\tstrengthValue: 25.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731530,\r\n\t\tdrugName: '1 ML Morphine Sulfate 15 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG/ML',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731537,\r\n\t\tdrugName: '20 ML Morphine Sulfate 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731545,\r\n\t\tdrugName: '50 ML Morphine Sulfate 50 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '50 MG/ML',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731993,\r\n\t\tdrugName: '1 ML Morphine Sulfate 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731995,\r\n\t\tdrugName: '1 ML Morphine Sulfate 10 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731998,\r\n\t\tdrugName: '20 ML Morphine Sulfate 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1731999,\r\n\t\tdrugName: '20 ML Morphine Sulfate 10 MG/ML Injection [Infumorph]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732003,\r\n\t\tdrugName: '1 ML Morphine Sulfate 8 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '8 MG/ML',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732006,\r\n\t\tdrugName: '1 ML Morphine Sulfate 4 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732011,\r\n\t\tdrugName: '1 ML Morphine Sulfate 8 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '8 MG/ML',\r\n\t\tstrengthValue: 8.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732014,\r\n\t\tdrugName: '1 ML Morphine Sulfate 4 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732136,\r\n\t\tdrugName: '1 ML Morphine Sulfate 5 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG/ML',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1732138,\r\n\t\tdrugName: '30 ML Morphine Sulfate 5 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '5 MG/ML',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1733080,\r\n\t\tdrugName: '1 ML Morphine Sulfate 15 MG/ML Cartridge',\r\n\t\tdoseFormCode: 1649572,\r\n\t\tdoseFormName: 'Cartridge',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG/ML',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735003,\r\n\t\tdrugName: '2 ML Fentanyl 0.05 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735006,\r\n\t\tdrugName: '10 ML Fentanyl 0.05 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735007,\r\n\t\tdrugName: '5 ML Fentanyl 0.05 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735008,\r\n\t\tdrugName: '20 ML Fentanyl 0.05 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735013,\r\n\t\tdrugName: '50 ML Fentanyl 0.05 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735057,\r\n\t\tdrugName: '2 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735060,\r\n\t\tdrugName: '5 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735062,\r\n\t\tdrugName: '20 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1735065,\r\n\t\tdrugName: '10 ML Fentanyl 0.05 MG/ML Injection [Sublimaze]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 4337,\r\n\t\tingredientName: 'Fentanyl',\r\n\t\tstrength: '0.05 MG/ML',\r\n\t\tstrengthValue: 0.05,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1745881,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Morphabond]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1745886,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet [Morphabond]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1745889,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Morphabond]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1745892,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Morphabond]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1790527,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '9 MG',\r\n\t\tstrengthValue: 9.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1790533,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 9 MG Extended Release Oral Capsule [Xtampza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '9 MG',\r\n\t\tstrengthValue: 9.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791558,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '13.5 MG',\r\n\t\tstrengthValue: 13.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791560,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 13.5 MG Extended Release Oral Capsule [Xtampza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '13.5 MG',\r\n\t\tstrengthValue: 13.5,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791567,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '18 MG',\r\n\t\tstrengthValue: 18.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791569,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 18 MG Extended Release Oral Capsule [Xtampza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '18 MG',\r\n\t\tstrengthValue: 18.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791574,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '27 MG',\r\n\t\tstrengthValue: 27.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791576,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 27 MG Extended Release Oral Capsule [Xtampza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '27 MG',\r\n\t\tstrengthValue: 27.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791580,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '36 MG',\r\n\t\tstrengthValue: 36.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1791582,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone 36 MG Extended Release Oral Capsule [Xtampza]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '36 MG',\r\n\t\tstrengthValue: 36.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1792707,\r\n\t\tdrugName: 'Codeine Phosphate 2 MG/ML / Guaifenesin 40 MG/ML / Pseudoephedrine Hydrochloride 6 MG/ML Oral Solution',\r\n\t\tdoseFormCode: 316968,\r\n\t\tdoseFormName: 'Oral Solution',\r\n\t\tingredientCode: 2670,\r\n\t\tingredientName: 'Codeine',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1797650,\r\n\t\tdrugName: 'Buprenorphine 74.2 MG Drug Implant',\r\n\t\tdoseFormCode: 657710,\r\n\t\tdoseFormName: 'Drug Implant',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '74.2 MG',\r\n\t\tstrengthValue: 74.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1797655,\r\n\t\tdrugName: 'Buprenorphine 74.2 MG Drug Implant [Probuphine]',\r\n\t\tdoseFormCode: 657710,\r\n\t\tdoseFormName: 'Drug Implant',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '74.2 MG',\r\n\t\tstrengthValue: 74.2,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806701,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806707,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 1.2 MG / Oxycodone Hydrochloride 10 MG Extended Release Oral Capsule [Troxyca]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806710,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 2.4 MG / Oxycodone Hydrochloride 20 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806716,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 3.6 MG / Oxycodone Hydrochloride 30 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806722,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 4.8 MG / Oxycodone Hydrochloride 40 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806728,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 7.2 MG / Oxycodone Hydrochloride 60 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1806734,\r\n\t\tdrugName: '12 HR Naltrexone hydrochloride 9.6 MG / Oxycodone Hydrochloride 80 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1809204,\r\n\t\tdrugName: 'Butorphanol Tartrate 2 MG/ML Injectable Solution [Torbugesic]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1811473,\r\n\t\tdrugName: '1 ML Pentazocine 30 MG/ML Injection',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1811475,\r\n\t\tdrugName: '1 ML Pentazocine 30 MG/ML Injection [Talwin]',\r\n\t\tdoseFormCode: 1649574,\r\n\t\tdoseFormName: 'Injection',\r\n\t\tingredientCode: 8001,\r\n\t\tingredientName: 'Pentazocine',\r\n\t\tstrength: '30 MG/ML',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1812164,\r\n\t\tdrugName: 'Acetaminophen 325 MG / Caffeine 30 MG / dihydrocodeine bitartrate 16 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 23088,\r\n\t\tingredientName: 'dihydrocodeine',\r\n\t\tstrength: '16 MG',\r\n\t\tstrengthValue: 16.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860127,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860129,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 20 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860137,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 40 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860148,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 80 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '80 MG',\r\n\t\tstrengthValue: 80.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860151,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860154,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860157,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Oxycodone Hydrochloride 10 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860491,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860492,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 10 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '10 MG',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860493,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860494,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 15 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860495,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860496,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 20 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '20 MG',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860497,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860498,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 30 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860499,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860500,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 40 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '40 MG',\r\n\t\tstrengthValue: 40.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860501,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1860502,\r\n\t\tdrugName: '12 HR Hydrocodone Bitartrate 50 MG Extended Release Oral Capsule [Zohydro]',\r\n\t\tdoseFormCode: 316943,\r\n\t\tdoseFormName: 'Extended Release Oral Capsule',\r\n\t\tingredientCode: 5489,\r\n\t\tingredientName: 'Hydrocodone',\r\n\t\tstrength: '50 MG',\r\n\t\tstrengthValue: 50.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1864412,\r\n\t\tdrugName: 'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.7 MG',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1864414,\r\n\t\tdrugName: 'Buprenorphine 0.7 MG / Naloxone 0.18 MG Sublingual Tablet [Zubsolv]',\r\n\t\tdoseFormCode: 317007,\r\n\t\tdoseFormName: 'Sublingual Tablet',\r\n\t\tingredientCode: 1819,\r\n\t\tingredientName: 'Buprenorphine',\r\n\t\tstrength: '0.7 MG',\r\n\t\tstrengthValue: 0.7,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1866543,\r\n\t\tdrugName: '1 ML Nalbuphine Hydrochloride 10 MG/ML Injection',\r\n\t\tdoseFormCode: 1151126,\r\n\t\tingredientCode: 7238,\r\n\t\tingredientName: 'Nalbuphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1866551,\r\n\t\tdrugName: '1 ML Nalbuphine Hydrochloride 20 M/ML Injection',\r\n\t\tdoseFormCode: 1151126,\r\n\t\tingredientCode: 7238,\r\n\t\tingredientName: 'Nalbuphine',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 904415,\r\n\t\tdrugName: 'Nalbuphine Hydrochloride 10MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 1151126,\r\n\t\tingredientCode: 7238,\r\n\t\tingredientName: 'Nalbuphine',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 904440,\r\n\t\tdrugName: 'Nalbuphine Hydrochloride 20 MG/ML Injectable Solution',\r\n\t\tdoseFormCode: 1151126,\r\n\t\tingredientCode: 7238,\r\n\t\tingredientName: 'Nalbuphine',\r\n\t\tstrength: '20 MG/ML',\r\n\t\tstrengthValue: 20.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1871434,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1871440,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 15 MG Extended Release Oral Tablet [Arymo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1871441,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1871443,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 30 MG Extended Release Oral Tablet [Arymo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1871444,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1871446,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 60 MG Extended Release Oral Tablet [Arymo]',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '60 MG',\r\n\t\tstrengthValue: 60.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1872234,\r\n\t\tdrugName: 'Abuse-Deterrent 12 HR Morphine Sulfate 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 7052,\r\n\t\tingredientName: 'Morphine',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1872265,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1872269,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 2 MG/ML Prefilled Syringe [Dilaudid]',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '2 MG/ML',\r\n\t\tstrengthValue: 2.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1872271,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1872272,\r\n\t\tdrugName: '1 ML Hydromorphone Hydrochloride 4 MG/ML Prefilled Syringe [Dilaudid]',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '4 MG/ML',\r\n\t\tstrengthValue: 4.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1872752,\r\n\t\tdrugName: '0.5 ML Hydromorphone Hydrochloride 1 MG/ML Prefilled Syringe [Dilaudid]',\r\n\t\tdoseFormCode: 721656,\r\n\t\tdoseFormName: 'Prefilled Syringe',\r\n\t\tingredientCode: 3423,\r\n\t\tingredientName: 'Hydromorphone',\r\n\t\tstrength: '1 MG/ML',\r\n\t\tstrengthValue: 1.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t}, {\r\n\t\tdrugCode: 1944529,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1944535,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 15 MG Oral Tablet [Roxybond]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '15 MG',\r\n\t\tstrengthValue: 15.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1944538,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1944540,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 30 MG Oral Tablet [Roxybond]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '30 MG',\r\n\t\tstrengthValue: 30.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1944541,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1944543,\r\n\t\tdrugName: 'Abuse-Deterrent Oxycodone Hydrochloride 5 MG Oral Tablet [Roxybond]',\r\n\t\tdoseFormCode: 317541,\r\n\t\tdoseFormName: 'Oral Tablet',\r\n\t\tingredientCode: 7804,\r\n\t\tingredientName: 'Oxycodone',\r\n\t\tstrength: '5 MG',\r\n\t\tstrengthValue: 5.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1946525,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 300 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '300 MG',\r\n\t\tstrengthValue: 300.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1946527,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 200 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '200 MG',\r\n\t\tstrengthValue: 200.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1946529,\r\n\t\tdrugName: 'Matrix Delivery 24 HR tramadol hydrochloride 100 MG Extended Release Oral Tablet',\r\n\t\tdoseFormCode: 316945,\r\n\t\tdoseFormName: 'Extended Release Oral Tablet',\r\n\t\tingredientCode: 10689,\r\n\t\tingredientName: 'Tramadol',\r\n\t\tstrength: '100 MG',\r\n\t\tstrengthValue: 100.0,\r\n\t\tstrengthUnit: 'MG'\r\n\t}, {\r\n\t\tdrugCode: 1947138,\r\n\t\tdrugName: 'Butorphanol 10 MG/ML Injectable Solution [Torphaject]',\r\n\t\tdoseFormCode: 316949,\r\n\t\tdoseFormName: 'Injectable Solution',\r\n\t\tingredientCode: 1841,\r\n\t\tingredientName: 'Butorphanol',\r\n\t\tstrength: '10 MG/ML',\r\n\t\tstrengthValue: 10.0,\r\n\t\tstrengthUnit: 'MG/ML'\r\n\t} }\r\n",
      "elm": {
        "library": {
          "identifier": {
            "id": "DayMonthTimings",
            "version": "0.6.000"
          },
          "schemaIdentifier": {
            "id": "urn:hl7-org:elm",
            "version": "r1"
          },
          "usings": {
            "def": [
              {
                "localIdentifier": "System",
                "uri": "urn:hl7-org:elm-types:r1"
              },
              {
                "localId": "1",
                "localIdentifier": "QDM",
                "uri": "urn:healthit-gov:qdm:v5_3",
                "version": "5.3"
              }
            ]
          },
          "parameters": {
            "def": [
              {
                "localId": "10",
                "name": "Measurement Period",
                "accessLevel": "Public",
                "parameterTypeSpecifier": {
                  "localId": "9",
                  "type": "IntervalTypeSpecifier",
                  "pointType": {
                    "localId": "8",
                    "name": "{urn:hl7-org:elm-types:r1}DateTime",
                    "type": "NamedTypeSpecifier"
                  }
                }
              }
            ]
          },
          "codeSystems": {
            "def": [
              {
                "localId": "2",
                "name": "LOINC",
                "id": "2.16.840.1.113883.6.1",
                "accessLevel": "Public"
              },
              {
                "localId": "3",
                "name": "SNOMEDCT",
                "id": "2.16.840.1.113883.6.96",
                "accessLevel": "Public"
              }
            ]
          },
          "codes": {
            "def": [
              {
                "localId": "5",
                "name": "Birthdate",
                "id": "21112-8",
                "display": "Birthdate",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "4",
                  "name": "LOINC"
                }
              },
              {
                "localId": "7",
                "name": "Dead",
                "id": "419099009",
                "display": "Dead",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "6",
                  "name": "SNOMEDCT"
                }
              }
            ]
          },
          "statements": {
            "def": [
              {
                "name": "Patient",
                "context": "Patient",
                "expression": {
                  "type": "SingletonFrom",
                  "operand": {
                    "dataType": "{urn:healthit-gov:qdm:v5_3}Patient",
                    "templateId": "Patient",
                    "type": "Retrieve"
                  }
                }
              },
              {
                "localId": "24",
                "name": "Months",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "24",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Months\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "23",
                          "s": [
                            {
                              "value": [
                                "{ ",
                                "1",
                                ", ",
                                "2",
                                ", ",
                                "3",
                                ", ",
                                "4",
                                ", ",
                                "5",
                                ", ",
                                "6",
                                ", ",
                                "7",
                                ", ",
                                "8",
                                ", ",
                                "9",
                                ", ",
                                "10",
                                ", ",
                                "11",
                                ", ",
                                "12",
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "23",
                  "type": "List",
                  "element": [
                    {
                      "localId": "11",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "1",
                      "type": "Literal"
                    },
                    {
                      "localId": "12",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "2",
                      "type": "Literal"
                    },
                    {
                      "localId": "13",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "3",
                      "type": "Literal"
                    },
                    {
                      "localId": "14",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "4",
                      "type": "Literal"
                    },
                    {
                      "localId": "15",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "5",
                      "type": "Literal"
                    },
                    {
                      "localId": "16",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "6",
                      "type": "Literal"
                    },
                    {
                      "localId": "17",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "7",
                      "type": "Literal"
                    },
                    {
                      "localId": "18",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "8",
                      "type": "Literal"
                    },
                    {
                      "localId": "19",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "9",
                      "type": "Literal"
                    },
                    {
                      "localId": "20",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "10",
                      "type": "Literal"
                    },
                    {
                      "localId": "21",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "11",
                      "type": "Literal"
                    },
                    {
                      "localId": "22",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "12",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "54",
                "name": "Months Containing 28 Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "54",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Months Containing 28 Days\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "53",
                          "s": [
                            {
                              "value": [
                                "{ ",
                                "1",
                                ", ",
                                "2",
                                ", ",
                                "3",
                                ", ",
                                "4",
                                ", ",
                                "5",
                                ", ",
                                "6",
                                ", ",
                                "7",
                                ", ",
                                "8",
                                ", ",
                                "9",
                                ", ",
                                "10",
                                ", ",
                                "11",
                                ", ",
                                "12",
                                ", ",
                                "13",
                                ", ",
                                "14",
                                ", ",
                                "15",
                                ", ",
                                "16",
                                ", ",
                                "17",
                                ", ",
                                "18",
                                ", ",
                                "19",
                                ", ",
                                "20",
                                ", ",
                                "21",
                                ", ",
                                "22",
                                ", ",
                                "23",
                                ", ",
                                "24",
                                ", ",
                                "25",
                                ", ",
                                "26",
                                ", ",
                                "27",
                                ", ",
                                "28",
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "53",
                  "type": "List",
                  "element": [
                    {
                      "localId": "25",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "1",
                      "type": "Literal"
                    },
                    {
                      "localId": "26",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "2",
                      "type": "Literal"
                    },
                    {
                      "localId": "27",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "3",
                      "type": "Literal"
                    },
                    {
                      "localId": "28",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "4",
                      "type": "Literal"
                    },
                    {
                      "localId": "29",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "5",
                      "type": "Literal"
                    },
                    {
                      "localId": "30",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "6",
                      "type": "Literal"
                    },
                    {
                      "localId": "31",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "7",
                      "type": "Literal"
                    },
                    {
                      "localId": "32",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "8",
                      "type": "Literal"
                    },
                    {
                      "localId": "33",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "9",
                      "type": "Literal"
                    },
                    {
                      "localId": "34",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "10",
                      "type": "Literal"
                    },
                    {
                      "localId": "35",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "11",
                      "type": "Literal"
                    },
                    {
                      "localId": "36",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "12",
                      "type": "Literal"
                    },
                    {
                      "localId": "37",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "13",
                      "type": "Literal"
                    },
                    {
                      "localId": "38",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "14",
                      "type": "Literal"
                    },
                    {
                      "localId": "39",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "15",
                      "type": "Literal"
                    },
                    {
                      "localId": "40",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "16",
                      "type": "Literal"
                    },
                    {
                      "localId": "41",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "17",
                      "type": "Literal"
                    },
                    {
                      "localId": "42",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "18",
                      "type": "Literal"
                    },
                    {
                      "localId": "43",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "19",
                      "type": "Literal"
                    },
                    {
                      "localId": "44",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "20",
                      "type": "Literal"
                    },
                    {
                      "localId": "45",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "21",
                      "type": "Literal"
                    },
                    {
                      "localId": "46",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "22",
                      "type": "Literal"
                    },
                    {
                      "localId": "47",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "23",
                      "type": "Literal"
                    },
                    {
                      "localId": "48",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "24",
                      "type": "Literal"
                    },
                    {
                      "localId": "49",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "25",
                      "type": "Literal"
                    },
                    {
                      "localId": "50",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "26",
                      "type": "Literal"
                    },
                    {
                      "localId": "51",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "27",
                      "type": "Literal"
                    },
                    {
                      "localId": "52",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "28",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "86",
                "name": "Months Containing 30 Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "86",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Months Containing 30 Days\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "85",
                          "s": [
                            {
                              "value": [
                                "{ ",
                                "1",
                                ", ",
                                "2",
                                ", ",
                                "3",
                                ", ",
                                "4",
                                ", ",
                                "5",
                                ", ",
                                "6",
                                ", ",
                                "7",
                                ", ",
                                "8",
                                ", ",
                                "9",
                                ", ",
                                "10",
                                ", ",
                                "11",
                                ", ",
                                "12",
                                ", ",
                                "13",
                                ", ",
                                "14",
                                ", ",
                                "15",
                                ", ",
                                "16",
                                ", ",
                                "17",
                                ", ",
                                "18",
                                ", ",
                                "19",
                                ", ",
                                "20",
                                ", ",
                                "21",
                                ", ",
                                "22",
                                ", ",
                                "23",
                                ", ",
                                "24",
                                ", ",
                                "25",
                                ", ",
                                "26",
                                ", ",
                                "27",
                                ", ",
                                "28",
                                ", ",
                                "29",
                                ", ",
                                "30",
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "85",
                  "type": "List",
                  "element": [
                    {
                      "localId": "55",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "1",
                      "type": "Literal"
                    },
                    {
                      "localId": "56",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "2",
                      "type": "Literal"
                    },
                    {
                      "localId": "57",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "3",
                      "type": "Literal"
                    },
                    {
                      "localId": "58",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "4",
                      "type": "Literal"
                    },
                    {
                      "localId": "59",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "5",
                      "type": "Literal"
                    },
                    {
                      "localId": "60",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "6",
                      "type": "Literal"
                    },
                    {
                      "localId": "61",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "7",
                      "type": "Literal"
                    },
                    {
                      "localId": "62",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "8",
                      "type": "Literal"
                    },
                    {
                      "localId": "63",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "9",
                      "type": "Literal"
                    },
                    {
                      "localId": "64",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "10",
                      "type": "Literal"
                    },
                    {
                      "localId": "65",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "11",
                      "type": "Literal"
                    },
                    {
                      "localId": "66",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "12",
                      "type": "Literal"
                    },
                    {
                      "localId": "67",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "13",
                      "type": "Literal"
                    },
                    {
                      "localId": "68",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "14",
                      "type": "Literal"
                    },
                    {
                      "localId": "69",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "15",
                      "type": "Literal"
                    },
                    {
                      "localId": "70",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "16",
                      "type": "Literal"
                    },
                    {
                      "localId": "71",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "17",
                      "type": "Literal"
                    },
                    {
                      "localId": "72",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "18",
                      "type": "Literal"
                    },
                    {
                      "localId": "73",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "19",
                      "type": "Literal"
                    },
                    {
                      "localId": "74",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "20",
                      "type": "Literal"
                    },
                    {
                      "localId": "75",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "21",
                      "type": "Literal"
                    },
                    {
                      "localId": "76",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "22",
                      "type": "Literal"
                    },
                    {
                      "localId": "77",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "23",
                      "type": "Literal"
                    },
                    {
                      "localId": "78",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "24",
                      "type": "Literal"
                    },
                    {
                      "localId": "79",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "25",
                      "type": "Literal"
                    },
                    {
                      "localId": "80",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "26",
                      "type": "Literal"
                    },
                    {
                      "localId": "81",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "27",
                      "type": "Literal"
                    },
                    {
                      "localId": "82",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "28",
                      "type": "Literal"
                    },
                    {
                      "localId": "83",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "29",
                      "type": "Literal"
                    },
                    {
                      "localId": "84",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "30",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "119",
                "name": "Months Containing 31 Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "119",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Months Containing 31 Days\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "118",
                          "s": [
                            {
                              "value": [
                                "{ ",
                                "1",
                                ", ",
                                "2",
                                ", ",
                                "3",
                                ", ",
                                "4",
                                ", ",
                                "5",
                                ", ",
                                "6",
                                ", ",
                                "7",
                                ", ",
                                "8",
                                ", ",
                                "9",
                                ", ",
                                "10",
                                ", ",
                                "11",
                                ", ",
                                "12",
                                ", ",
                                "13",
                                ", ",
                                "14",
                                ", ",
                                "15",
                                ", ",
                                "16",
                                ", ",
                                "17",
                                ", ",
                                "18",
                                ", ",
                                "19",
                                ", ",
                                "20",
                                ", ",
                                "21",
                                ", ",
                                "22",
                                ", ",
                                "23",
                                ", ",
                                "24",
                                ", ",
                                "25",
                                ", ",
                                "26",
                                ", ",
                                "27",
                                ", ",
                                "28",
                                ", ",
                                "29",
                                ", ",
                                "30",
                                ", ",
                                "31",
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "118",
                  "type": "List",
                  "element": [
                    {
                      "localId": "87",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "1",
                      "type": "Literal"
                    },
                    {
                      "localId": "88",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "2",
                      "type": "Literal"
                    },
                    {
                      "localId": "89",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "3",
                      "type": "Literal"
                    },
                    {
                      "localId": "90",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "4",
                      "type": "Literal"
                    },
                    {
                      "localId": "91",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "5",
                      "type": "Literal"
                    },
                    {
                      "localId": "92",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "6",
                      "type": "Literal"
                    },
                    {
                      "localId": "93",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "7",
                      "type": "Literal"
                    },
                    {
                      "localId": "94",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "8",
                      "type": "Literal"
                    },
                    {
                      "localId": "95",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "9",
                      "type": "Literal"
                    },
                    {
                      "localId": "96",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "10",
                      "type": "Literal"
                    },
                    {
                      "localId": "97",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "11",
                      "type": "Literal"
                    },
                    {
                      "localId": "98",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "12",
                      "type": "Literal"
                    },
                    {
                      "localId": "99",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "13",
                      "type": "Literal"
                    },
                    {
                      "localId": "100",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "14",
                      "type": "Literal"
                    },
                    {
                      "localId": "101",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "15",
                      "type": "Literal"
                    },
                    {
                      "localId": "102",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "16",
                      "type": "Literal"
                    },
                    {
                      "localId": "103",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "17",
                      "type": "Literal"
                    },
                    {
                      "localId": "104",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "18",
                      "type": "Literal"
                    },
                    {
                      "localId": "105",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "19",
                      "type": "Literal"
                    },
                    {
                      "localId": "106",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "20",
                      "type": "Literal"
                    },
                    {
                      "localId": "107",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "21",
                      "type": "Literal"
                    },
                    {
                      "localId": "108",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "22",
                      "type": "Literal"
                    },
                    {
                      "localId": "109",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "23",
                      "type": "Literal"
                    },
                    {
                      "localId": "110",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "24",
                      "type": "Literal"
                    },
                    {
                      "localId": "111",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "25",
                      "type": "Literal"
                    },
                    {
                      "localId": "112",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "26",
                      "type": "Literal"
                    },
                    {
                      "localId": "113",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "27",
                      "type": "Literal"
                    },
                    {
                      "localId": "114",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "28",
                      "type": "Literal"
                    },
                    {
                      "localId": "115",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "29",
                      "type": "Literal"
                    },
                    {
                      "localId": "116",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "30",
                      "type": "Literal"
                    },
                    {
                      "localId": "117",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "31",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "150",
                "name": "Months Containing 29 Days",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "150",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Months Containing 29 Days\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "149",
                          "s": [
                            {
                              "value": [
                                "{ ",
                                "1",
                                ", ",
                                "2",
                                ", ",
                                "3",
                                ", ",
                                "4",
                                ", ",
                                "5",
                                ", ",
                                "6",
                                ", ",
                                "7",
                                ", ",
                                "8",
                                ", ",
                                "9",
                                ", ",
                                "10",
                                ", ",
                                "11",
                                ", ",
                                "12",
                                ", ",
                                "13",
                                ", ",
                                "14",
                                ", ",
                                "15",
                                ", ",
                                "16",
                                ", ",
                                "17",
                                ", ",
                                "18",
                                ", ",
                                "19",
                                ", ",
                                "20",
                                ", ",
                                "21",
                                ", ",
                                "22",
                                ", ",
                                "23",
                                ", ",
                                "24",
                                ", ",
                                "25",
                                ", ",
                                "26",
                                ", ",
                                "27",
                                ", ",
                                "28",
                                ", ",
                                "29",
                                " }"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "149",
                  "type": "List",
                  "element": [
                    {
                      "localId": "120",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "1",
                      "type": "Literal"
                    },
                    {
                      "localId": "121",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "2",
                      "type": "Literal"
                    },
                    {
                      "localId": "122",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "3",
                      "type": "Literal"
                    },
                    {
                      "localId": "123",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "4",
                      "type": "Literal"
                    },
                    {
                      "localId": "124",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "5",
                      "type": "Literal"
                    },
                    {
                      "localId": "125",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "6",
                      "type": "Literal"
                    },
                    {
                      "localId": "126",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "7",
                      "type": "Literal"
                    },
                    {
                      "localId": "127",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "8",
                      "type": "Literal"
                    },
                    {
                      "localId": "128",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "9",
                      "type": "Literal"
                    },
                    {
                      "localId": "129",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "10",
                      "type": "Literal"
                    },
                    {
                      "localId": "130",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "11",
                      "type": "Literal"
                    },
                    {
                      "localId": "131",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "12",
                      "type": "Literal"
                    },
                    {
                      "localId": "132",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "13",
                      "type": "Literal"
                    },
                    {
                      "localId": "133",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "14",
                      "type": "Literal"
                    },
                    {
                      "localId": "134",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "15",
                      "type": "Literal"
                    },
                    {
                      "localId": "135",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "16",
                      "type": "Literal"
                    },
                    {
                      "localId": "136",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "17",
                      "type": "Literal"
                    },
                    {
                      "localId": "137",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "18",
                      "type": "Literal"
                    },
                    {
                      "localId": "138",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "19",
                      "type": "Literal"
                    },
                    {
                      "localId": "139",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "20",
                      "type": "Literal"
                    },
                    {
                      "localId": "140",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "21",
                      "type": "Literal"
                    },
                    {
                      "localId": "141",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "22",
                      "type": "Literal"
                    },
                    {
                      "localId": "142",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "23",
                      "type": "Literal"
                    },
                    {
                      "localId": "143",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "24",
                      "type": "Literal"
                    },
                    {
                      "localId": "144",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "25",
                      "type": "Literal"
                    },
                    {
                      "localId": "145",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "26",
                      "type": "Literal"
                    },
                    {
                      "localId": "146",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "27",
                      "type": "Literal"
                    },
                    {
                      "localId": "147",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "28",
                      "type": "Literal"
                    },
                    {
                      "localId": "148",
                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                      "value": "29",
                      "type": "Literal"
                    }
                  ]
                }
              },
              {
                "localId": "192",
                "name": "IsLeapYear",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "192",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"IsLeapYear\"",
                            "(",
                            "yr",
                            " "
                          ]
                        },
                        {
                          "r": "174",
                          "s": [
                            {
                              "value": [
                                "Integer"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "191",
                          "s": [
                            {
                              "r": "191",
                              "s": [
                                {
                                  "r": "185",
                                  "s": [
                                    {
                                      "value": [
                                        "( "
                                      ]
                                    },
                                    {
                                      "r": "185",
                                      "s": [
                                        {
                                          "r": "179",
                                          "s": [
                                            {
                                              "r": "177",
                                              "s": [
                                                {
                                                  "r": "175",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "yr"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " mod ",
                                                    "4"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "=",
                                                " ",
                                                "0"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\tand "
                                          ]
                                        },
                                        {
                                          "r": "184",
                                          "s": [
                                            {
                                              "r": "182",
                                              "s": [
                                                {
                                                  "r": "180",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "yr"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " mod ",
                                                    "100"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " ",
                                                "!=",
                                                " ",
                                                "0"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t)"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\tor "
                                  ]
                                },
                                {
                                  "r": "190",
                                  "s": [
                                    {
                                      "r": "188",
                                      "s": [
                                        {
                                          "r": "186",
                                          "s": [
                                            {
                                              "value": [
                                                "yr"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " mod ",
                                            "400"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "=",
                                        " ",
                                        "0"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "191",
                  "type": "Or",
                  "operand": [
                    {
                      "localId": "185",
                      "type": "And",
                      "operand": [
                        {
                          "localId": "179",
                          "type": "Equal",
                          "operand": [
                            {
                              "localId": "177",
                              "type": "Modulo",
                              "operand": [
                                {
                                  "localId": "175",
                                  "name": "yr",
                                  "type": "OperandRef"
                                },
                                {
                                  "localId": "176",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "4",
                                  "type": "Literal"
                                }
                              ]
                            },
                            {
                              "localId": "178",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "0",
                              "type": "Literal"
                            }
                          ]
                        },
                        {
                          "localId": "184",
                          "type": "Not",
                          "operand": {
                            "type": "Equal",
                            "operand": [
                              {
                                "localId": "182",
                                "type": "Modulo",
                                "operand": [
                                  {
                                    "localId": "180",
                                    "name": "yr",
                                    "type": "OperandRef"
                                  },
                                  {
                                    "localId": "181",
                                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                    "value": "100",
                                    "type": "Literal"
                                  }
                                ]
                              },
                              {
                                "localId": "183",
                                "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                "value": "0",
                                "type": "Literal"
                              }
                            ]
                          }
                        }
                      ]
                    },
                    {
                      "localId": "190",
                      "type": "Equal",
                      "operand": [
                        {
                          "localId": "188",
                          "type": "Modulo",
                          "operand": [
                            {
                              "localId": "186",
                              "name": "yr",
                              "type": "OperandRef"
                            },
                            {
                              "localId": "187",
                              "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                              "value": "400",
                              "type": "Literal"
                            }
                          ]
                        },
                        {
                          "localId": "189",
                          "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                          "value": "0",
                          "type": "Literal"
                        }
                      ]
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "yr",
                    "operandTypeSpecifier": {
                      "localId": "174",
                      "name": "{urn:hl7-org:elm-types:r1}Integer",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "207",
                "name": "DaysInMonth",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "207",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"DaysInMonth\"",
                            "(",
                            "yr",
                            " "
                          ]
                        },
                        {
                          "r": "156",
                          "s": [
                            {
                              "value": [
                                "Integer"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "mo",
                            " "
                          ]
                        },
                        {
                          "r": "157",
                          "s": [
                            {
                              "value": [
                                "Integer"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "206",
                          "s": [
                            {
                              "r": "206",
                              "s": [
                                {
                                  "s": [
                                    {
                                      "r": "200",
                                      "s": [
                                        {
                                          "r": "199",
                                          "s": [
                                            {
                                              "value": [
                                                "(\r\n\t"
                                              ]
                                            },
                                            {
                                              "r": "199",
                                              "s": [
                                                {
                                                  "value": [
                                                    "case\r\n\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "169",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "when "
                                                      ]
                                                    },
                                                    {
                                                      "r": "167",
                                                      "s": [
                                                        {
                                                          "r": "158",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "mo"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " in "
                                                          ]
                                                        },
                                                        {
                                                          "r": "166",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "{ ",
                                                                "1",
                                                                ", ",
                                                                "3",
                                                                ", ",
                                                                "5",
                                                                ", ",
                                                                "7",
                                                                ", ",
                                                                "8",
                                                                ", ",
                                                                "10",
                                                                ", ",
                                                                "12",
                                                                " }"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " then "
                                                      ]
                                                    },
                                                    {
                                                      "r": "168",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "\"Months Containing 31 Days\""
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "197",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "when "
                                                      ]
                                                    },
                                                    {
                                                      "r": "172",
                                                      "s": [
                                                        {
                                                          "r": "170",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "mo"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "=",
                                                            " ",
                                                            "2"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " then "
                                                      ]
                                                    },
                                                    {
                                                      "r": "196",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "if "
                                                          ]
                                                        },
                                                        {
                                                          "r": "193",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"IsLeapYear\"",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "173",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "yr"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "then "
                                                          ]
                                                        },
                                                        {
                                                          "r": "194",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Months Containing 29 Days\""
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " \r\n\t\t\telse "
                                                          ]
                                                        },
                                                        {
                                                          "r": "195",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Months Containing 28 Days\""
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " \r\n\t\telse "
                                                  ]
                                                },
                                                {
                                                  "r": "198",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Months Containing 30 Days\""
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " \r\n\tend"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "D"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "205",
                                  "s": [
                                    {
                                      "value": [
                                        "return "
                                      ]
                                    },
                                    {
                                      "r": "204",
                                      "s": [
                                        {
                                          "value": [
                                            "DateTime",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "201",
                                          "s": [
                                            {
                                              "value": [
                                                "yr"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ", "
                                          ]
                                        },
                                        {
                                          "r": "202",
                                          "s": [
                                            {
                                              "value": [
                                                "mo"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ", "
                                          ]
                                        },
                                        {
                                          "r": "203",
                                          "s": [
                                            {
                                              "value": [
                                                "D"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            ")"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "206",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "200",
                      "alias": "D",
                      "expression": {
                        "localId": "199",
                        "type": "Case",
                        "caseItem": [
                          {
                            "localId": "169",
                            "when": {
                              "localId": "167",
                              "type": "In",
                              "operand": [
                                {
                                  "localId": "158",
                                  "name": "mo",
                                  "type": "OperandRef"
                                },
                                {
                                  "localId": "166",
                                  "type": "List",
                                  "element": [
                                    {
                                      "localId": "159",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "1",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "160",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "3",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "161",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "5",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "162",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "7",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "163",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "8",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "164",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "10",
                                      "type": "Literal"
                                    },
                                    {
                                      "localId": "165",
                                      "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                      "value": "12",
                                      "type": "Literal"
                                    }
                                  ]
                                }
                              ]
                            },
                            "then": {
                              "localId": "168",
                              "name": "Months Containing 31 Days",
                              "type": "ExpressionRef"
                            }
                          },
                          {
                            "localId": "197",
                            "when": {
                              "localId": "172",
                              "type": "Equal",
                              "operand": [
                                {
                                  "localId": "170",
                                  "name": "mo",
                                  "type": "OperandRef"
                                },
                                {
                                  "localId": "171",
                                  "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                                  "value": "2",
                                  "type": "Literal"
                                }
                              ]
                            },
                            "then": {
                              "localId": "196",
                              "type": "If",
                              "condition": {
                                "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                                "type": "As",
                                "operand": {
                                  "localId": "193",
                                  "name": "IsLeapYear",
                                  "type": "FunctionRef",
                                  "operand": [
                                    {
                                      "localId": "173",
                                      "name": "yr",
                                      "type": "OperandRef"
                                    }
                                  ]
                                }
                              },
                              "then": {
                                "localId": "194",
                                "name": "Months Containing 29 Days",
                                "type": "ExpressionRef"
                              },
                              "else": {
                                "localId": "195",
                                "name": "Months Containing 28 Days",
                                "type": "ExpressionRef"
                              }
                            }
                          }
                        ],
                        "else": {
                          "localId": "198",
                          "name": "Months Containing 30 Days",
                          "type": "ExpressionRef"
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "205",
                    "expression": {
                      "localId": "204",
                      "type": "DateTime",
                      "year": {
                        "localId": "201",
                        "name": "yr",
                        "type": "OperandRef"
                      },
                      "month": {
                        "localId": "202",
                        "name": "mo",
                        "type": "OperandRef"
                      },
                      "day": {
                        "localId": "203",
                        "name": "D",
                        "type": "AliasRef"
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "yr",
                    "operandTypeSpecifier": {
                      "localId": "156",
                      "name": "{urn:hl7-org:elm-types:r1}Integer",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "mo",
                    "operandTypeSpecifier": {
                      "localId": "157",
                      "name": "{urn:hl7-org:elm-types:r1}Integer",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "212",
                "name": "DaysInYear",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "212",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"DaysInYear\"",
                            "(",
                            "yr",
                            " "
                          ]
                        },
                        {
                          "r": "151",
                          "s": [
                            {
                              "value": [
                                "Integer"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "211",
                          "s": [
                            {
                              "r": "211",
                              "s": [
                                {
                                  "value": [
                                    "flatten "
                                  ]
                                },
                                {
                                  "r": "210",
                                  "s": [
                                    {
                                      "value": [
                                        "( "
                                      ]
                                    },
                                    {
                                      "r": "210",
                                      "s": [
                                        {
                                          "s": [
                                            {
                                              "r": "153",
                                              "s": [
                                                {
                                                  "r": "152",
                                                  "s": [
                                                    {
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Months"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "Mo"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "r": "209",
                                          "s": [
                                            {
                                              "value": [
                                                "return "
                                              ]
                                            },
                                            {
                                              "r": "208",
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"DaysInMonth\"",
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "154",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "yr"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "155",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "Mo"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t)"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "211",
                  "type": "Flatten",
                  "operand": {
                    "localId": "210",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "153",
                        "alias": "Mo",
                        "expression": {
                          "localId": "152",
                          "name": "Months",
                          "type": "ExpressionRef"
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "return": {
                      "localId": "209",
                      "expression": {
                        "localId": "208",
                        "name": "DaysInMonth",
                        "type": "FunctionRef",
                        "operand": [
                          {
                            "localId": "154",
                            "name": "yr",
                            "type": "OperandRef"
                          },
                          {
                            "localId": "155",
                            "name": "Mo",
                            "type": "AliasRef"
                          }
                        ]
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "yr",
                    "operandTypeSpecifier": {
                      "localId": "151",
                      "name": "{urn:hl7-org:elm-types:r1}Integer",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "315",
                "name": "DaysInPeriod",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "315",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"DaysInPeriod\"",
                            "(",
                            "period",
                            " "
                          ]
                        },
                        {
                          "r": "216",
                          "s": [
                            {
                              "value": [
                                "Interval<"
                              ]
                            },
                            {
                              "r": "215",
                              "s": [
                                {
                                  "value": [
                                    "DateTime"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "314",
                          "s": [
                            {
                              "r": "314",
                              "s": [
                                {
                                  "value": [
                                    "case\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "225",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "223",
                                      "s": [
                                        {
                                          "r": "219",
                                          "s": [
                                            {
                                              "r": "218",
                                              "s": [
                                                {
                                                  "value": [
                                                    "start of "
                                                  ]
                                                },
                                                {
                                                  "r": "217",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "period"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " is null"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\tor \r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "r": "222",
                                          "s": [
                                            {
                                              "r": "221",
                                              "s": [
                                                {
                                                  "value": [
                                                    "end of "
                                                  ]
                                                },
                                                {
                                                  "r": "220",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "period"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " is null"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then ",
                                        "null"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "273",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "230",
                                      "s": [
                                        {
                                          "r": "227",
                                          "s": [
                                            {
                                              "value": [
                                                "start of "
                                              ]
                                            },
                                            {
                                              "r": "226",
                                              "s": [
                                                {
                                                  "value": [
                                                    "period"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "same year as",
                                            " \r\n\t\t"
                                          ]
                                        },
                                        {
                                          "r": "229",
                                          "s": [
                                            {
                                              "value": [
                                                "end of "
                                              ]
                                            },
                                            {
                                              "r": "228",
                                              "s": [
                                                {
                                                  "value": [
                                                    "period"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "272",
                                      "s": [
                                        {
                                          "value": [
                                            "case\r\n\t\t\t"
                                          ]
                                        },
                                        {
                                          "r": "256",
                                          "s": [
                                            {
                                              "value": [
                                                "when "
                                              ]
                                            },
                                            {
                                              "r": "237",
                                              "s": [
                                                {
                                                  "r": "233",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "month from "
                                                      ]
                                                    },
                                                    {
                                                      "r": "232",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "start of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "231",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "=",
                                                    " "
                                                  ]
                                                },
                                                {
                                                  "r": "236",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "month from \r\n\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "r": "235",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "end of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "234",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "period"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " then "
                                              ]
                                            },
                                            {
                                              "r": "255",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "245",
                                                      "s": [
                                                        {
                                                          "r": "244",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "( "
                                                              ]
                                                            },
                                                            {
                                                              "r": "244",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"DaysInMonth\"",
                                                                    "("
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "240",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "month from "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "239",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "start of "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "238",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "period"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ", "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "243",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "year from "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "242",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "start of "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "241",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "period"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ")"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "D"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "254",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "where "
                                                      ]
                                                    },
                                                    {
                                                      "r": "254",
                                                      "s": [
                                                        {
                                                          "r": "249",
                                                          "s": [
                                                            {
                                                              "r": "246",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or after",
                                                                " "
                                                              ]
                                                            },
                                                            {
                                                              "r": "248",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "start of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "247",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\t\tand "
                                                          ]
                                                        },
                                                        {
                                                          "r": "253",
                                                          "s": [
                                                            {
                                                              "r": "250",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or before",
                                                                " \r\n\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "r": "252",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "end of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "251",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " \r\n\t\t\telse "
                                          ]
                                        },
                                        {
                                          "r": "271",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "261",
                                                  "s": [
                                                    {
                                                      "r": "260",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "( "
                                                          ]
                                                        },
                                                        {
                                                          "r": "260",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"DaysInYear\"",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "259",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "year from "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "258",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "start of "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "257",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "period"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        " ",
                                                        "D"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "270",
                                              "s": [
                                                {
                                                  "value": [
                                                    "where "
                                                  ]
                                                },
                                                {
                                                  "r": "270",
                                                  "s": [
                                                    {
                                                      "r": "265",
                                                      "s": [
                                                        {
                                                          "r": "262",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "D"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "same day or after",
                                                            " "
                                                          ]
                                                        },
                                                        {
                                                          "r": "264",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "start of "
                                                              ]
                                                            },
                                                            {
                                                              "r": "263",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "period"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\tand "
                                                      ]
                                                    },
                                                    {
                                                      "r": "269",
                                                      "s": [
                                                        {
                                                          "r": "266",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "D"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "same day or before",
                                                            " \r\n\t\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "r": "268",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "end of "
                                                              ]
                                                            },
                                                            {
                                                              "r": "267",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "period"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " \r\n\t\tend"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "312",
                                  "s": [
                                    {
                                      "value": [
                                        "when "
                                      ]
                                    },
                                    {
                                      "r": "280",
                                      "s": [
                                        {
                                          "r": "278",
                                          "s": [
                                            {
                                              "value": [
                                                "difference in years between "
                                              ]
                                            },
                                            {
                                              "r": "275",
                                              "s": [
                                                {
                                                  "value": [
                                                    "start of "
                                                  ]
                                                },
                                                {
                                                  "r": "274",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "period"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " and \r\n\t\t"
                                              ]
                                            },
                                            {
                                              "r": "277",
                                              "s": [
                                                {
                                                  "value": [
                                                    "end of "
                                                  ]
                                                },
                                                {
                                                  "r": "276",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "period"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "=",
                                            " ",
                                            "1"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " then "
                                      ]
                                    },
                                    {
                                      "r": "311",
                                      "s": [
                                        {
                                          "r": "295",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "295",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "285",
                                                      "s": [
                                                        {
                                                          "r": "284",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "( "
                                                              ]
                                                            },
                                                            {
                                                              "r": "284",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"DaysInYear\"",
                                                                    "("
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "283",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "year from "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "282",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "start of "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "281",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "period"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ")"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "D"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "294",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "where "
                                                      ]
                                                    },
                                                    {
                                                      "r": "294",
                                                      "s": [
                                                        {
                                                          "r": "289",
                                                          "s": [
                                                            {
                                                              "r": "286",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or after",
                                                                " "
                                                              ]
                                                            },
                                                            {
                                                              "r": "288",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "start of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "287",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\t\tand "
                                                          ]
                                                        },
                                                        {
                                                          "r": "293",
                                                          "s": [
                                                            {
                                                              "r": "290",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or before",
                                                                " \r\n\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "r": "292",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "end of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "291",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t)"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t\t\tunion "
                                          ]
                                        },
                                        {
                                          "r": "310",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "310",
                                              "s": [
                                                {
                                                  "s": [
                                                    {
                                                      "r": "300",
                                                      "s": [
                                                        {
                                                          "r": "299",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "( "
                                                              ]
                                                            },
                                                            {
                                                              "r": "299",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"DaysInYear\"",
                                                                    "("
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "298",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "year from \r\n\t\t\t\t\t"
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "297",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "end of "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "296",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "period"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "\r\n\t\t\t\t)"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            " ",
                                                            "D"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t\t\t\t"
                                                  ]
                                                },
                                                {
                                                  "r": "309",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "where "
                                                      ]
                                                    },
                                                    {
                                                      "r": "309",
                                                      "s": [
                                                        {
                                                          "r": "304",
                                                          "s": [
                                                            {
                                                              "r": "301",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or after",
                                                                " "
                                                              ]
                                                            },
                                                            {
                                                              "r": "303",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "start of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "302",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t\t\t\tand "
                                                          ]
                                                        },
                                                        {
                                                          "r": "308",
                                                          "s": [
                                                            {
                                                              "r": "305",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "D"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "same day or before",
                                                                " \r\n\t\t\t\t\t\t"
                                                              ]
                                                            },
                                                            {
                                                              "r": "307",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "end of "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "306",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "period"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t)"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " \r\n\t\telse ",
                                    "null",
                                    " \r\n\tend"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "314",
                  "type": "Case",
                  "caseItem": [
                    {
                      "localId": "225",
                      "when": {
                        "localId": "223",
                        "type": "Or",
                        "operand": [
                          {
                            "localId": "219",
                            "type": "IsNull",
                            "operand": {
                              "localId": "218",
                              "type": "Start",
                              "operand": {
                                "localId": "217",
                                "name": "period",
                                "type": "OperandRef"
                              }
                            }
                          },
                          {
                            "localId": "222",
                            "type": "IsNull",
                            "operand": {
                              "localId": "221",
                              "type": "End",
                              "operand": {
                                "localId": "220",
                                "name": "period",
                                "type": "OperandRef"
                              }
                            }
                          }
                        ]
                      },
                      "then": {
                        "type": "As",
                        "operand": {
                          "localId": "224",
                          "type": "Null"
                        },
                        "asTypeSpecifier": {
                          "type": "ListTypeSpecifier",
                          "elementType": {
                            "name": "{urn:hl7-org:elm-types:r1}DateTime",
                            "type": "NamedTypeSpecifier"
                          }
                        }
                      }
                    },
                    {
                      "localId": "273",
                      "when": {
                        "localId": "230",
                        "precision": "Year",
                        "type": "SameAs",
                        "operand": [
                          {
                            "localId": "227",
                            "type": "Start",
                            "operand": {
                              "localId": "226",
                              "name": "period",
                              "type": "OperandRef"
                            }
                          },
                          {
                            "localId": "229",
                            "type": "End",
                            "operand": {
                              "localId": "228",
                              "name": "period",
                              "type": "OperandRef"
                            }
                          }
                        ]
                      },
                      "then": {
                        "localId": "272",
                        "type": "Case",
                        "caseItem": [
                          {
                            "localId": "256",
                            "when": {
                              "localId": "237",
                              "type": "Equal",
                              "operand": [
                                {
                                  "localId": "233",
                                  "precision": "Month",
                                  "type": "DateTimeComponentFrom",
                                  "operand": {
                                    "localId": "232",
                                    "type": "Start",
                                    "operand": {
                                      "localId": "231",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                },
                                {
                                  "localId": "236",
                                  "precision": "Month",
                                  "type": "DateTimeComponentFrom",
                                  "operand": {
                                    "localId": "235",
                                    "type": "End",
                                    "operand": {
                                      "localId": "234",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                }
                              ]
                            },
                            "then": {
                              "localId": "255",
                              "type": "Query",
                              "source": [
                                {
                                  "localId": "245",
                                  "alias": "D",
                                  "expression": {
                                    "localId": "244",
                                    "name": "DaysInMonth",
                                    "type": "FunctionRef",
                                    "operand": [
                                      {
                                        "localId": "240",
                                        "precision": "Month",
                                        "type": "DateTimeComponentFrom",
                                        "operand": {
                                          "localId": "239",
                                          "type": "Start",
                                          "operand": {
                                            "localId": "238",
                                            "name": "period",
                                            "type": "OperandRef"
                                          }
                                        }
                                      },
                                      {
                                        "localId": "243",
                                        "precision": "Year",
                                        "type": "DateTimeComponentFrom",
                                        "operand": {
                                          "localId": "242",
                                          "type": "Start",
                                          "operand": {
                                            "localId": "241",
                                            "name": "period",
                                            "type": "OperandRef"
                                          }
                                        }
                                      }
                                    ]
                                  }
                                }
                              ],
                              "relationship": [

                              ],
                              "where": {
                                "localId": "254",
                                "type": "And",
                                "operand": [
                                  {
                                    "localId": "249",
                                    "precision": "Day",
                                    "type": "SameOrAfter",
                                    "operand": [
                                      {
                                        "localId": "246",
                                        "name": "D",
                                        "type": "AliasRef"
                                      },
                                      {
                                        "localId": "248",
                                        "type": "Start",
                                        "operand": {
                                          "localId": "247",
                                          "name": "period",
                                          "type": "OperandRef"
                                        }
                                      }
                                    ]
                                  },
                                  {
                                    "localId": "253",
                                    "precision": "Day",
                                    "type": "SameOrBefore",
                                    "operand": [
                                      {
                                        "localId": "250",
                                        "name": "D",
                                        "type": "AliasRef"
                                      },
                                      {
                                        "localId": "252",
                                        "type": "End",
                                        "operand": {
                                          "localId": "251",
                                          "name": "period",
                                          "type": "OperandRef"
                                        }
                                      }
                                    ]
                                  }
                                ]
                              }
                            }
                          }
                        ],
                        "else": {
                          "localId": "271",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "261",
                              "alias": "D",
                              "expression": {
                                "localId": "260",
                                "name": "DaysInYear",
                                "type": "FunctionRef",
                                "operand": [
                                  {
                                    "localId": "259",
                                    "precision": "Year",
                                    "type": "DateTimeComponentFrom",
                                    "operand": {
                                      "localId": "258",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "257",
                                        "name": "period",
                                        "type": "OperandRef"
                                      }
                                    }
                                  }
                                ]
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "where": {
                            "localId": "270",
                            "type": "And",
                            "operand": [
                              {
                                "localId": "265",
                                "precision": "Day",
                                "type": "SameOrAfter",
                                "operand": [
                                  {
                                    "localId": "262",
                                    "name": "D",
                                    "type": "AliasRef"
                                  },
                                  {
                                    "localId": "264",
                                    "type": "Start",
                                    "operand": {
                                      "localId": "263",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              },
                              {
                                "localId": "269",
                                "precision": "Day",
                                "type": "SameOrBefore",
                                "operand": [
                                  {
                                    "localId": "266",
                                    "name": "D",
                                    "type": "AliasRef"
                                  },
                                  {
                                    "localId": "268",
                                    "type": "End",
                                    "operand": {
                                      "localId": "267",
                                      "name": "period",
                                      "type": "OperandRef"
                                    }
                                  }
                                ]
                              }
                            ]
                          }
                        }
                      }
                    },
                    {
                      "localId": "312",
                      "when": {
                        "localId": "280",
                        "type": "Equal",
                        "operand": [
                          {
                            "localId": "278",
                            "precision": "Year",
                            "type": "DifferenceBetween",
                            "operand": [
                              {
                                "localId": "275",
                                "type": "Start",
                                "operand": {
                                  "localId": "274",
                                  "name": "period",
                                  "type": "OperandRef"
                                }
                              },
                              {
                                "localId": "277",
                                "type": "End",
                                "operand": {
                                  "localId": "276",
                                  "name": "period",
                                  "type": "OperandRef"
                                }
                              }
                            ]
                          },
                          {
                            "localId": "279",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "1",
                            "type": "Literal"
                          }
                        ]
                      },
                      "then": {
                        "localId": "311",
                        "type": "Union",
                        "operand": [
                          {
                            "localId": "295",
                            "type": "Query",
                            "source": [
                              {
                                "localId": "285",
                                "alias": "D",
                                "expression": {
                                  "localId": "284",
                                  "name": "DaysInYear",
                                  "type": "FunctionRef",
                                  "operand": [
                                    {
                                      "localId": "283",
                                      "precision": "Year",
                                      "type": "DateTimeComponentFrom",
                                      "operand": {
                                        "localId": "282",
                                        "type": "Start",
                                        "operand": {
                                          "localId": "281",
                                          "name": "period",
                                          "type": "OperandRef"
                                        }
                                      }
                                    }
                                  ]
                                }
                              }
                            ],
                            "relationship": [

                            ],
                            "where": {
                              "localId": "294",
                              "type": "And",
                              "operand": [
                                {
                                  "localId": "289",
                                  "precision": "Day",
                                  "type": "SameOrAfter",
                                  "operand": [
                                    {
                                      "localId": "286",
                                      "name": "D",
                                      "type": "AliasRef"
                                    },
                                    {
                                      "localId": "288",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "287",
                                        "name": "period",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                },
                                {
                                  "localId": "293",
                                  "precision": "Day",
                                  "type": "SameOrBefore",
                                  "operand": [
                                    {
                                      "localId": "290",
                                      "name": "D",
                                      "type": "AliasRef"
                                    },
                                    {
                                      "localId": "292",
                                      "type": "End",
                                      "operand": {
                                        "localId": "291",
                                        "name": "period",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          },
                          {
                            "localId": "310",
                            "type": "Query",
                            "source": [
                              {
                                "localId": "300",
                                "alias": "D",
                                "expression": {
                                  "localId": "299",
                                  "name": "DaysInYear",
                                  "type": "FunctionRef",
                                  "operand": [
                                    {
                                      "localId": "298",
                                      "precision": "Year",
                                      "type": "DateTimeComponentFrom",
                                      "operand": {
                                        "localId": "297",
                                        "type": "End",
                                        "operand": {
                                          "localId": "296",
                                          "name": "period",
                                          "type": "OperandRef"
                                        }
                                      }
                                    }
                                  ]
                                }
                              }
                            ],
                            "relationship": [

                            ],
                            "where": {
                              "localId": "309",
                              "type": "And",
                              "operand": [
                                {
                                  "localId": "304",
                                  "precision": "Day",
                                  "type": "SameOrAfter",
                                  "operand": [
                                    {
                                      "localId": "301",
                                      "name": "D",
                                      "type": "AliasRef"
                                    },
                                    {
                                      "localId": "303",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "302",
                                        "name": "period",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                },
                                {
                                  "localId": "308",
                                  "precision": "Day",
                                  "type": "SameOrBefore",
                                  "operand": [
                                    {
                                      "localId": "305",
                                      "name": "D",
                                      "type": "AliasRef"
                                    },
                                    {
                                      "localId": "307",
                                      "type": "End",
                                      "operand": {
                                        "localId": "306",
                                        "name": "period",
                                        "type": "OperandRef"
                                      }
                                    }
                                  ]
                                }
                              ]
                            }
                          }
                        ]
                      }
                    }
                  ],
                  "else": {
                    "type": "As",
                    "operand": {
                      "localId": "313",
                      "type": "Null"
                    },
                    "asTypeSpecifier": {
                      "type": "ListTypeSpecifier",
                      "elementType": {
                        "name": "{urn:hl7-org:elm-types:r1}DateTime",
                        "type": "NamedTypeSpecifier"
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "period",
                    "operandTypeSpecifier": {
                      "localId": "216",
                      "type": "IntervalTypeSpecifier",
                      "pointType": {
                        "localId": "215",
                        "name": "{urn:hl7-org:elm-types:r1}DateTime",
                        "type": "NamedTypeSpecifier"
                      }
                    }
                  }
                ]
              }
            ]
          }
        }
      },
      "elm_annotations": {
        "statements": [
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Months\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "23"
                  }
                ],
                "ref_id": "24"
              }
            ],
            "define_name": "Months"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Months Containing 28 Days\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28 }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "53"
                  }
                ],
                "ref_id": "54"
              }
            ],
            "define_name": "Months Containing 28 Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Months Containing 30 Days\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "85"
                  }
                ],
                "ref_id": "86"
              }
            ],
            "define_name": "Months Containing 30 Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Months Containing 31 Days\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "118"
                  }
                ],
                "ref_id": "119"
              }
            ],
            "define_name": "Months Containing 31 Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Months Containing 29 Days\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29 }"
                          }
                        ]
                      }
                    ],
                    "node_type": "List",
                    "ref_id": "149"
                  }
                ],
                "ref_id": "150"
              }
            ],
            "define_name": "Months Containing 29 Days"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"IsLeapYear\"(yr "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Integer"
                          }
                        ]
                      }
                    ],
                    "ref_id": "174"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "( "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "yr"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "175"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " mod 4"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Modulo",
                                        "ref_id": "177"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " = 0"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Equal",
                                    "ref_id": "179"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      and "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "yr"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "180"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " mod 100"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Modulo",
                                        "ref_id": "182"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " != 0"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Not",
                                    "ref_id": "184"
                                  }
                                ],
                                "node_type": "And",
                                "ref_id": "185"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n  )"
                                  }
                                ]
                              }
                            ],
                            "node_type": "And",
                            "ref_id": "185"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    or "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "yr"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "OperandRef",
                                    "ref_id": "186"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " mod 400"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Modulo",
                                "ref_id": "188"
                              },
                              {
                                "children": [
                                  {
                                    "text": " = 0"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Equal",
                            "ref_id": "190"
                          }
                        ],
                        "node_type": "Or",
                        "ref_id": "191"
                      }
                    ],
                    "node_type": "Or",
                    "ref_id": "191"
                  }
                ],
                "ref_id": "192"
              }
            ],
            "define_name": "IsLeapYear"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"DaysInMonth\"(yr "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Integer"
                          }
                        ]
                      }
                    ],
                    "ref_id": "156"
                  },
                  {
                    "children": [
                      {
                        "text": ", mo "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Integer"
                          }
                        ]
                      }
                    ],
                    "ref_id": "157"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "(&#13;\n  "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "case&#13;\n    "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "when "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "mo"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "158"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " in "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "{ 1, 3, 5, 7, 8, 10, 12 }"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "List",
                                                    "ref_id": "166"
                                                  }
                                                ],
                                                "ref_id": "167"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " then "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "\"Months Containing 31 Days\""
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "168"
                                              }
                                            ],
                                            "ref_id": "169"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n    "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "when "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "mo"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "170"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " = 2"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "172"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " then "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "if "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"IsLeapYear\"("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "yr"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "173"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "193"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "then "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Months Containing 29 Days\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "194"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " &#13;\n      else "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Months Containing 28 Days\""
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "195"
                                                  }
                                                ],
                                                "ref_id": "196"
                                              }
                                            ],
                                            "ref_id": "197"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " &#13;\n    else "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Months Containing 30 Days\""
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "198"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " &#13;\n  end"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Case",
                                        "ref_id": "199"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Case",
                                    "ref_id": "199"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " D"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "200"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "return "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "DateTime("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "yr"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "201"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ", "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "mo"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "202"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ", "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "D"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "203"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": ")"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "DateTime",
                                "ref_id": "204"
                              }
                            ],
                            "ref_id": "205"
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "206"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "206"
                  }
                ],
                "ref_id": "207"
              }
            ],
            "define_name": "DaysInMonth"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"DaysInYear\"(yr "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Integer"
                          }
                        ]
                      }
                    ],
                    "ref_id": "151"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "flatten "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "( "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Months"
                                                      }
                                                    ]
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "ExpressionRef",
                                            "ref_id": "152"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " Mo"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "153"
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "return "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"DaysInMonth\"("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "yr"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "154"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "Mo"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "AliasRef",
                                            "ref_id": "155"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "FunctionRef",
                                        "ref_id": "208"
                                      }
                                    ],
                                    "ref_id": "209"
                                  }
                                ],
                                "node_type": "Query",
                                "ref_id": "210"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n  )"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Query",
                            "ref_id": "210"
                          }
                        ],
                        "node_type": "Flatten",
                        "ref_id": "211"
                      }
                    ],
                    "node_type": "Flatten",
                    "ref_id": "211"
                  }
                ],
                "ref_id": "212"
              }
            ],
            "define_name": "DaysInYear"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"DaysInPeriod\"(period "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Interval<"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "DateTime"
                              }
                            ]
                          }
                        ],
                        "ref_id": "215"
                      },
                      {
                        "children": [
                          {
                            "text": ">"
                          }
                        ]
                      }
                    ],
                    "ref_id": "216"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "case&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "start of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "period"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "217"
                                          }
                                        ],
                                        "node_type": "Start",
                                        "ref_id": "218"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " is null"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "IsNull",
                                    "ref_id": "219"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      or &#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "end of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "period"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "220"
                                          }
                                        ],
                                        "node_type": "End",
                                        "ref_id": "221"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " is null"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "IsNull",
                                    "ref_id": "222"
                                  }
                                ],
                                "ref_id": "223"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then null"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "225"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "start of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "period"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "226"
                                      }
                                    ],
                                    "node_type": "Start",
                                    "ref_id": "227"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " same year as &#13;\n    "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "end of "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "period"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "OperandRef",
                                        "ref_id": "228"
                                      }
                                    ],
                                    "node_type": "End",
                                    "ref_id": "229"
                                  }
                                ],
                                "ref_id": "230"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "case&#13;\n      "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "when "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "month from "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "start of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "231"
                                                  }
                                                ],
                                                "node_type": "Start",
                                                "ref_id": "232"
                                              }
                                            ],
                                            "node_type": "DateTimeComponentFrom",
                                            "ref_id": "233"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " = "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "month from &#13;\n      "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "end of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "period"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "OperandRef",
                                                    "ref_id": "234"
                                                  }
                                                ],
                                                "node_type": "End",
                                                "ref_id": "235"
                                              }
                                            ],
                                            "node_type": "DateTimeComponentFrom",
                                            "ref_id": "236"
                                          }
                                        ],
                                        "ref_id": "237"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " then "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "( "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"DaysInMonth\"("
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "month from "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "start of "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "period"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "OperandRef",
                                                                    "ref_id": "238"
                                                                  }
                                                                ],
                                                                "node_type": "Start",
                                                                "ref_id": "239"
                                                              }
                                                            ],
                                                            "node_type": "DateTimeComponentFrom",
                                                            "ref_id": "240"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ", "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "year from "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "start of "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "period"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "OperandRef",
                                                                    "ref_id": "241"
                                                                  }
                                                                ],
                                                                "node_type": "Start",
                                                                "ref_id": "242"
                                                              }
                                                            ],
                                                            "node_type": "DateTimeComponentFrom",
                                                            "ref_id": "243"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ")"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "FunctionRef",
                                                        "ref_id": "244"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "244"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " D"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "245"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "where "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "246"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or after "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "start of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "247"
                                                          }
                                                        ],
                                                        "node_type": "Start",
                                                        "ref_id": "248"
                                                      }
                                                    ],
                                                    "node_type": "SameOrAfter",
                                                    "ref_id": "249"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n          and "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "250"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or before &#13;\n          "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "end of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "251"
                                                          }
                                                        ],
                                                        "node_type": "End",
                                                        "ref_id": "252"
                                                      }
                                                    ],
                                                    "node_type": "SameOrBefore",
                                                    "ref_id": "253"
                                                  }
                                                ],
                                                "ref_id": "254"
                                              }
                                            ],
                                            "ref_id": "254"
                                          }
                                        ],
                                        "ref_id": "255"
                                      }
                                    ],
                                    "ref_id": "256"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " &#13;\n      else "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "( "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"DaysInYear\"("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "year from "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "start of "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "period"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "OperandRef",
                                                                "ref_id": "257"
                                                              }
                                                            ],
                                                            "node_type": "Start",
                                                            "ref_id": "258"
                                                          }
                                                        ],
                                                        "node_type": "DateTimeComponentFrom",
                                                        "ref_id": "259"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "260"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "260"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": " D"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "261"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n      "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "where "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "D"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "AliasRef",
                                                    "ref_id": "262"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " same day or after "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "start of "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "period"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "263"
                                                      }
                                                    ],
                                                    "node_type": "Start",
                                                    "ref_id": "264"
                                                  }
                                                ],
                                                "node_type": "SameOrAfter",
                                                "ref_id": "265"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n        and "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "D"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "AliasRef",
                                                    "ref_id": "266"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " same day or before &#13;\n        "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "end of "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "period"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "267"
                                                      }
                                                    ],
                                                    "node_type": "End",
                                                    "ref_id": "268"
                                                  }
                                                ],
                                                "node_type": "SameOrBefore",
                                                "ref_id": "269"
                                              }
                                            ],
                                            "ref_id": "270"
                                          }
                                        ],
                                        "ref_id": "270"
                                      }
                                    ],
                                    "ref_id": "271"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " &#13;\n    end"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "272"
                              }
                            ],
                            "ref_id": "273"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "when "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "difference in years between "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "start of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "period"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "274"
                                          }
                                        ],
                                        "node_type": "Start",
                                        "ref_id": "275"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " and &#13;\n    "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "end of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "period"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "OperandRef",
                                            "ref_id": "276"
                                          }
                                        ],
                                        "node_type": "End",
                                        "ref_id": "277"
                                      }
                                    ],
                                    "node_type": "DifferenceBetween",
                                    "ref_id": "278"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " = 1"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "280"
                              },
                              {
                                "children": [
                                  {
                                    "text": " then "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "( "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"DaysInYear\"("
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "year from "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "start of "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "period"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "OperandRef",
                                                                    "ref_id": "281"
                                                                  }
                                                                ],
                                                                "node_type": "Start",
                                                                "ref_id": "282"
                                                              }
                                                            ],
                                                            "node_type": "DateTimeComponentFrom",
                                                            "ref_id": "283"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ")"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "FunctionRef",
                                                        "ref_id": "284"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "284"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " D"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "285"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n        "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "where "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "286"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or after "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "start of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "287"
                                                          }
                                                        ],
                                                        "node_type": "Start",
                                                        "ref_id": "288"
                                                      }
                                                    ],
                                                    "node_type": "SameOrAfter",
                                                    "ref_id": "289"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n          and "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "290"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or before &#13;\n          "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "end of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "291"
                                                          }
                                                        ],
                                                        "node_type": "End",
                                                        "ref_id": "292"
                                                      }
                                                    ],
                                                    "node_type": "SameOrBefore",
                                                    "ref_id": "293"
                                                  }
                                                ],
                                                "ref_id": "294"
                                              }
                                            ],
                                            "ref_id": "294"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "295"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n    )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "295"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n      union "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "( "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"DaysInYear\"("
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "year from &#13;\n          "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "end of "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "period"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "OperandRef",
                                                                    "ref_id": "296"
                                                                  }
                                                                ],
                                                                "node_type": "End",
                                                                "ref_id": "297"
                                                              }
                                                            ],
                                                            "node_type": "DateTimeComponentFrom",
                                                            "ref_id": "298"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "&#13;\n        )"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "FunctionRef",
                                                        "ref_id": "299"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "299"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": " D"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "300"
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n          "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "where "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "301"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or after "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "start of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "302"
                                                          }
                                                        ],
                                                        "node_type": "Start",
                                                        "ref_id": "303"
                                                      }
                                                    ],
                                                    "node_type": "SameOrAfter",
                                                    "ref_id": "304"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n            and "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "D"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "AliasRef",
                                                        "ref_id": "305"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " same day or before &#13;\n            "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "end of "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "period"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "OperandRef",
                                                            "ref_id": "306"
                                                          }
                                                        ],
                                                        "node_type": "End",
                                                        "ref_id": "307"
                                                      }
                                                    ],
                                                    "node_type": "SameOrBefore",
                                                    "ref_id": "308"
                                                  }
                                                ],
                                                "ref_id": "309"
                                              }
                                            ],
                                            "ref_id": "309"
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "310"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n      )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Query",
                                    "ref_id": "310"
                                  }
                                ],
                                "ref_id": "311"
                              }
                            ],
                            "ref_id": "312"
                          },
                          {
                            "children": [
                              {
                                "text": " &#13;\n    else null &#13;\n  end"
                              }
                            ]
                          }
                        ],
                        "node_type": "Case",
                        "ref_id": "314"
                      }
                    ],
                    "node_type": "Case",
                    "ref_id": "314"
                  }
                ],
                "ref_id": "315"
              }
            ],
            "define_name": "DaysInPeriod"
          }
        ],
        "identifier": {
          "id": "DayMonthTimings",
          "version": "0.6.000"
        }
      },
      "is_main_library": false,
      "is_top_level": true,
      "library_name": "DayMonthTimings",
      "library_version": "0.6.000",
      "statement_dependencies": [
        {
          "statement_name": "DaysInPeriod",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "DaysInMonth"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "DaysInYear"
            }
          ]
        },
        {
          "statement_name": "DaysInMonth",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "Months Containing 31 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "IsLeapYear"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "Months Containing 29 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "Months Containing 28 Days"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "Months Containing 30 Days"
            }
          ]
        },
        {
          "statement_name": "Months Containing 31 Days"
        },
        {
          "statement_name": "IsLeapYear"
        },
        {
          "statement_name": "Months Containing 29 Days"
        },
        {
          "statement_name": "Months Containing 28 Days"
        },
        {
          "statement_name": "Months Containing 30 Days"
        },
        {
          "statement_name": "DaysInYear",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "Months"
            },
            {
              "hqmf_id": null,
              "library_name": "DayMonthTimings",
              "statement_name": "DaysInMonth"
            }
          ]
        },
        {
          "statement_name": "Months"
        }
      ]
    },
    {
      "cql": "library PotentialOpioidOveruse version '0.1.068'\r\n\r\nusing QDM version '5.3'\r\n\r\ninclude MATGlobalCommonFunctions version '2.0.000' called Global\r\ninclude OpioidMedicationLogic version '1.17.000' called OpioidLogicLibrary\r\ninclude DayMonthTimings version '0.6.000' called Timing\r\n\r\ncodesystem \"SNOMEDCT:2018-03\": 'urn:oid:2.16.840.1.113883.6.96' version 'urn:hl7:version:2018-03'\r\n\r\nvalueset \"ONC Administrative Sex\": 'urn:oid:2.16.840.1.113762.1.4.1'\r\nvalueset \"Race\": 'urn:oid:2.16.840.1.114222.4.11.836'\r\nvalueset \"Ethnicity\": 'urn:oid:2.16.840.1.114222.4.11.837'\r\nvalueset \"Payer\": 'urn:oid:2.16.840.1.114222.4.11.3591'\r\nvalueset \"Office Visit\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1001'\r\nvalueset \"Preventive Care Services - Established Office Visit, 18 and Up\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1025'\r\nvalueset \"Preventive Care Services-Initial Office Visit, 18 and Up\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1023'\r\nvalueset \"Preventive Care Services - Other\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1030'\r\nvalueset \"Face to Face Interaction - No ED\": 'urn:oid:2.16.840.1.113762.1.4.1080.2'\r\nvalueset \"Palliative Care\": 'urn:oid:2.16.840.1.113883.3.600.1.1579'\r\nvalueset \"Hospice Care SNO\": 'urn:oid:2.16.840.1.113883.3.3157.1004.20'\r\nvalueset \"All Cancer\": 'urn:oid:2.16.840.1.113883.3.464.1003.108.12.1011'\r\nvalueset \"Sickle Cell Disease SNOMEDCT\": 'urn:oid:2.16.840.1.113762.1.4.1029.33'\r\nvalueset \"Outpatient Consultation\": 'urn:oid:2.16.840.1.113883.3.464.1003.101.12.1008'\r\nvalueset \"Opioid Medications\": 'urn:oid:2.16.840.1.113883.3.3157.1004.26'\r\n\r\ncode \"Every eight hours (qualifier value)\": '307469008' from \"SNOMEDCT:2018-03\" display 'Every eight hours (qualifier value)'\r\ncode \"Every forty eight hours (qualifier value)\": '396131002' from \"SNOMEDCT:2018-03\" display 'Every forty eight hours (qualifier value)'\r\ncode \"Every four hours as required (qualifier value)\": '1791000175106' from \"SNOMEDCT:2018-03\" display 'Every four hours as required (qualifier value)'\r\ncode \"Every seventy two hours (qualifier value)\": '396143001' from \"SNOMEDCT:2018-03\" display 'Every seventy two hours (qualifier value)'\r\ncode \"Every six hours (qualifier value)\": '307468000' from \"SNOMEDCT:2018-03\" display 'Every six hours (qualifier value)'\r\ncode \"Every thirty six hours (qualifier value)\": '396126004' from \"SNOMEDCT:2018-03\" display 'Every thirty six hours (qualifier value)'\r\ncode \"Every twelve hours (qualifier value)\": '307470009' from \"SNOMEDCT:2018-03\" display 'Every twelve hours (qualifier value)'\r\ncode \"Every twenty four hours (qualifier value)\": '396125000' from \"SNOMEDCT:2018-03\" display 'Every twenty four hours (qualifier value)'\r\ncode \"Every two to four hours (qualifier value)\": '225752000' from \"SNOMEDCT:2018-03\" display 'Every two to four hours (qualifier value)'\r\ncode \"Four times daily (qualifier value)\": '307439001' from \"SNOMEDCT:2018-03\" display 'Four times daily (qualifier value)'\r\ncode \"Once daily (qualifier value)\": '229797004' from \"SNOMEDCT:2018-03\" display 'Once daily (qualifier value)'\r\ncode \"Three times daily (qualifier value)\": '229798009' from \"SNOMEDCT:2018-03\" display 'Three times daily (qualifier value)'\r\ncode \"Twice a day (qualifier value)\": '229799001' from \"SNOMEDCT:2018-03\" display 'Twice a day (qualifier value)'\r\n\r\nparameter \"Measurement Period\" Interval<DateTime>\r\n\r\ncontext Patient\r\n\r\ndefine \"SDE Ethnicity\":\r\n\t[\"Patient Characteristic Ethnicity\": \"Ethnicity\"]\r\n\r\ndefine \"SDE Payer\":\r\n\t[\"Patient Characteristic Payer\": \"Payer\"]\r\n\r\ndefine \"SDE Race\":\r\n\t[\"Patient Characteristic Race\": \"Race\"]\r\n\r\ndefine \"SDE Sex\":\r\n\t[\"Patient Characteristic Sex\": \"ONC Administrative Sex\"]\r\n\r\ndefine \"Numerator\":\r\n\t\"MME Greater Than 90\"\r\n\r\ndefine \"MME Sum Days\":\r\n\tdistinct ( \"MME Days\" MMEDays\r\n\t\treturn MMEDays.Day ) Days\r\n\t\tlet totalMME: Sum(\"MME Days\" Total\r\n\t\t\t\twhere Total.Day same day as Days\r\n\t\t\t\treturn all Total.MME\r\n\t\t)\r\n\t\treturn {\r\n\t\t\tDay: Days,\r\n\t\t\ttotalMME: totalMME\r\n\t\t}\r\n\r\ndefine \"MME Greater Than 90\":\n\t/*Using the MME interval passed from the \"MMEIntervals\" definition, count the number of instances where the MME interval is greater than 90 days*/\r\n\tCount(\"MME Sum Days\" MMESum\r\n\t\t\twhere MMESum.totalMME.value >= 90\r\n\t)>= 90\r\n\r\ndefine \"Denominator\":\r\n\t\"Initial Population\"\r\n\r\ndefine \"Encounters during Measurement Period\":\n\t/*A Face to Face Interaction, Office Visit, Preventative Care Services  Established Office Visit for 18 years and over, Preventative Care Services - Initial Office Visit for 18 years and over, Outpatient Consultation or Preventative Care Services - Other encounter performed during the Measurement Period*/\r\n\t( [\"Encounter, Performed\": \"Face to Face Interaction - No ED\"]\r\n\t\tunion [\"Encounter, Performed\": \"Office Visit\"]\r\n\t\tunion [\"Encounter, Performed\": \"Preventive Care Services - Established Office Visit, 18 and Up\"]\r\n\t\tunion [\"Encounter, Performed\": \"Preventive Care Services-Initial Office Visit, 18 and Up\"]\r\n\t\tunion [\"Encounter, Performed\": \"Outpatient Consultation\"]\r\n\t\tunion [\"Encounter, Performed\": \"Preventive Care Services - Other\"] ) Encounter\r\n\t\twhere Encounter.relevantPeriod during \"Measurement Period\"\r\n\r\ndefine \"OpioidMedications\":\n\t/*An opioid medication order during or overlapping the start of the measurement period*/\r\n\t[\"Medication, Order\": \"Opioid Medications\"] OpioidMedicationOrder\r\n\t\twhere OpioidMedicationOrder.relevantPeriod starts during \"Measurement Period\"\r\n\t\t\tor OpioidMedicationOrder.relevantPeriod overlaps \"Measurement Period\"\r\n\r\ndefine \"MME Days\":\n\t/*Using the rxNorm Code passed from the PrescriptionDays definition, and retun the number of days a medication was ordered*/\r\n\tflatten ( \"Prescription Days\" PrescriptionDays\r\n\t\t\treturn all ( PrescriptionDays.days_period Days\r\n\t\t\t\t\treturn {\r\n\t\t\t\t\t\trxNormCode: PrescriptionDays.rxNormCode,\r\n\t\t\t\t\t\tDay: Days,\r\n\t\t\t\t\t\tMME: PrescriptionDays.MME\r\n\t\t\t\t\t}\r\n\t\t\t)\r\n\t)\r\n\r\ndefine \"Denominator Exclusion\":\n\t/*Patients receiving palliative or hospice treatment, or patients with cancer, or patients with sickle cell disease during the measurement period are excluded.*/\r\n\texists ( \"Encounters during Measurement Period\" Encounter\r\n\t\t\twith [\"Intervention, Order\": \"Palliative Care\"] PalliativeCareOrder\r\n\t\t\t\tsuch that PalliativeCareOrder.authorDatetime during Encounter.relevantPeriod\r\n\t)\r\n\t\tor exists ( \"Encounters during Measurement Period\" Encounter\r\n\t\t\t\twith [\"Intervention, Performed\": \"Palliative Care\"] PalliativeCareIntervention\r\n\t\t\t\t\tsuch that PalliativeCareIntervention.relevantPeriod overlaps Encounter.relevantPeriod\r\n\t\t\t\t\t\tor PalliativeCareIntervention.relevantPeriod starts during Encounter.relevantPeriod\r\n\t\t)\r\n\t\tor exists ( \"Encounters during Measurement Period\" Encounter\r\n\t\t\t\twith ( [\"Intervention, Order\": \"Hospice Care SNO\"]\r\n\t\t\t\t\tunion [\"Intervention, Performed\": \"Hospice Care SNO\"]\r\n\t\t\t\t\tunion [\"Intervention, Recommended\": \"Hospice Care SNO\"] ) Hospice\r\n\t\t\t\t\tsuch that Hospice.authorDatetime during \"Measurement Period\"\r\n\t\t)\r\n\t\tor exists ( \"Encounters during Measurement Period\" Encounter\r\n\t\t\t\twith [\"Diagnosis\": \"All Cancer\"] CancerDiagnosis\r\n\t\t\t\t\tsuch that CancerDiagnosis.prevalencePeriod starts 1 year or less before start of \"Measurement Period\"\r\n\t\t\t\t\t\tor CancerDiagnosis.prevalencePeriod starts during \"Measurement Period\"\r\n\t\t)\r\n\t\tor exists ( \"Encounters during Measurement Period\" Encounter\r\n\t\t\t\twith [\"Diagnosis\": \"Sickle Cell Disease SNOMEDCT\"] DiagnosisSickle\r\n\t\t\t\t\tsuch that DiagnosisSickle.prevalencePeriod starts before start of \"Measurement Period\"\r\n\t\t\t\t\t\tor DiagnosisSickle.prevalencePeriod starts during \"Measurement Period\"\r\n\t\t)\r\n\r\ndefine \"Prescriptions with MME\":\n\t/*Using the MME calculated from the Opioid Medication Library and return the opioid code, opioid author datetime, opioid effective period, and the Conversion Factor*/\r\n\t\"OpioidMedications\" Opioid\r\n\t\tlet dosesPerDay: \"DosesPerDay\"(Opioid.frequency),\r\n\t\tMME: singleton from ( OpioidLogicLibrary.\"CalculateMorphineMilligramEquivalents\"({ {\r\n\t\t\t\t\trxNormCode: Opioid.code,\r\n\t\t\t\t\tdoseQuantity: Opioid.dosage,\r\n\t\t\t\t\tdosesPerDay: dosesPerDay\r\n\t\t\t\t} }\r\n\t\t\t)\r\n\t\t),\r\n\t\tmedPeriod: Opioid.relevantPeriod\r\n\t\t\tintersect \"Measurement Period\"\r\n\t\treturn {\r\n\t\t\trxNormCode: Opioid.code,\r\n\t\t\tauthortime: Opioid.authorDatetime,\r\n\t\t\teffectivePeriod: medPeriod,\r\n\t\t\tconversionFactor: MME.conversionFactor,\r\n\t\t\tMME: MME.MME\r\n\t\t}\r\n\r\ndefine \"Initial Population\":\n\t/*Patients 18 years of age and older prescribed a 90-day or greater supply with no more than a 7 day gap between prescription of opioids and who have a visit during the measurement period*/\r\n\tGlobal.CalendarAgeInYearsAt(Patient.birthDatetime, start of \"Measurement Period\")>= 18\r\n\t\tand exists ( \"Encounters during Measurement Period\" )\r\n\t\tand exists ( \"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\" )\r\n\r\ndefine \"Prescription Days\":\n\t/*Using the values passed from the Prescription with MMEs definition, this definition creates a single list containing the days within the period*/\r\n\t\"Prescriptions with MME\" ScriptMME\r\n\t\tlet period: Timing.\"DaysInPeriod\"(ScriptMME.effectivePeriod)\r\n\t\treturn {\r\n\t\t\trxNormCode: ScriptMME.rxNormCode,\r\n\t\t\tdays_period: period, /* DaysInPeriod returns a list of Dates in the interval*/\r\n\t\t\tMME: ScriptMME.MME\r\n\t\t}\r\n\r\ndefine \"Opioid Med Periods In Measurement Period\":\r\n\t/* Creates a list of tuples that have the medication and the period of the medication in the measurement period. */\r\n\t\"OpioidMedications\" Opioid\r\n\t\treturn {\r\n\t\t\tperiodInMP: Opioid.relevantPeriod intersect \"Measurement Period\",\r\n\t\t\tmed: Opioid\r\n\t\t}\r\n\r\ndefine \"Opioid Periods\":\r\n\t/* All intervals of opioid medications, clamped to the measurement period, collapsed */\r\n\tcollapse(\"Opioid Med Periods In Measurement Period\" Opioid return Opioid.periodInMP)\r\n\r\ndefine \"Overall Active Opioid Period\":\r\n\t/* The overall period of opioid medications. start of first to end of last */\r\n\tInterval[\r\n\t\tstart of First(\"Opioid Med Periods In Measurement Period\" OpioidPeriod sort by start of periodInMP).periodInMP,\r\n\t\tend of Last(\"Opioid Med Periods In Measurement Period\" OpioidPeriod sort by end of periodInMP).periodInMP\r\n\t\t]\r\n\r\ndefine \"Gaps In Active Opioid Period\":\r\n\t/* The list of all gaps in the overall opioid period. */\r\n\t\"Opioid Periods\" Period\r\n\t\tlet NextIndex: IndexOf(\"Opioid Periods\", Period) + 1\r\n\t\twhere NextIndex < Length(\"Opioid Periods\")\r\n\t\treturn Interval[end of Period, start of \"Opioid Periods\"[NextIndex]]\r\n\r\ndefine \"Gaps Greater Than 7 Days\":\r\n\t/* The list of gaps in the overall period that are greater than 7 days */\r\n\t\"Gaps In Active Opioid Period\" Gap\r\n\t\twhere duration in days of Gap > 7\r\n\r\ndefine \"Periods With Allowed Gaps\":\r\n\t/* The lists of periods with allowed gaps. This uses \"Gaps Greater Than 7 Days\" to construct the periods. */\r\n\tif Length(\"Gaps Greater Than 7 Days\") < 1\r\n\t\t/* If there are no gaps, use the overall period */\r\n\t\tthen { \"Overall Active Opioid Period\" }\r\n\t\telse \r\n\t\t\t/* First interval from start of overall period to first gap */\r\n\t\t\t{ Interval[start of \"Overall Active Opioid Period\", start of \"Gaps Greater Than 7 Days\"[0]] } union \r\n\t\t\t/* Rest of intervals. Foreach: start at end of current gap, end at end of next gap or end of overall period */\r\n\t\t\t\"Gaps Greater Than 7 Days\" Gap\r\n\t\t\t\tlet NextGapIndex: IndexOf(\"Gaps Greater Than 7 Days\", Gap) + 1\r\n\t\t\t\treturn if NextGapIndex < Length(\"Gaps Greater Than 7 Days\")\r\n\t\t\t\t\tthen Interval[end of Gap, start of \"Gaps Greater Than 7 Days\"[NextGapIndex]]\r\n\t\t\t\t\telse Interval[end of Gap, end of \"Overall Active Opioid Period\"]\r\n\r\ndefine \"Periods With Allowed Gaps With Meds and Durations\":\r\n\t/* List of each period with allowed gaps with the list of medications and the Cumulative Medication Duration for the\r\n\t\tmedications in period */\r\n\t\"Periods With Allowed Gaps\" Period\r\n\t\tlet Meds: (\"Opioid Med Periods In Measurement Period\" Opioid where Opioid.periodInMP during Period)\r\n\t\treturn {\r\n\t\t\tperiod: Period,\r\n\t\t\tmeds: Meds Med return Med.med,\r\n\t\t\tcmd: \"Cumulative Duration\"(Meds Med return Med.periodInMP)\r\n\t\t}\r\n\r\ndefine function \"Cumulative Duration\"(Periods List<Interval<DateTime>>):\r\n\tSum((collapse(Periods)) Period\r\n\t\treturn all duration in days of Period\r\n\t)\r\n\r\ndefine \"Periods With and Without 7 Day Gap With Cumulative Med Duration 90 days or Greater\":\r\n\t/* The list of periods with Cumulative Medication Duration greater than or equal to 90 days. */\r\n\t\"Periods With Allowed Gaps With Meds and Durations\" Period\r\n\t\twhere Period.cmd >= 90\r\n\r\ndefine function \"Cumulative Medication Duration\"(Medication List<\"Medication, Order\">):\r\n\tSum((collapse(Medication.relevantPeriod))CumulativeDosages\r\n\t\t\treturn all duration in days of CumulativeDosages\r\n\t)\r\n\r\ndefine function \"DosesPerDay\"(frequency Code):\r\n\tcase\r\n\t\twhen frequency ~ \"Once daily (qualifier value)\" then 1.0\r\n\t\twhen frequency ~ \"Twice a day (qualifier value)\" then 2.0\r\n\t\twhen frequency ~ \"Three times daily (qualifier value)\" then 3.0\r\n\t\twhen frequency ~ \"Four times daily (qualifier value)\" then 4.0\r\n\t\twhen frequency ~ \"Every four hours as required (qualifier value)\" then 6.0\r\n\t\twhen frequency ~ \"Every two to four hours (qualifier value)\" then 12.0\r\n\t\twhen frequency ~ \"Every twenty four hours (qualifier value)\" then 1.0\r\n\t\twhen frequency ~ \"Every twelve hours (qualifier value)\" then 2.0\r\n\t\twhen frequency ~ \"Every thirty six hours (qualifier value)\" then 0.67\r\n\t\twhen frequency ~ \"Every eight hours (qualifier value)\" then 3.0\r\n\t\twhen frequency ~ \"Every six hours (qualifier value)\" then 4.0\r\n\t\twhen frequency ~ \"Every seventy two hours (qualifier value)\" then 0.34\r\n\t\twhen frequency ~ \"Every forty eight hours (qualifier value)\" then 0.5 \r\n\t\telse null \r\n\tend\r\n",
      "elm": {
        "library": {
          "identifier": {
            "id": "MATGlobalCommonFunctions",
            "version": "2.0.000"
          },
          "schemaIdentifier": {
            "id": "urn:hl7-org:elm",
            "version": "r1"
          },
          "usings": {
            "def": [
              {
                "localIdentifier": "System",
                "uri": "urn:hl7-org:elm-types:r1"
              },
              {
                "localId": "1",
                "localIdentifier": "QDM",
                "uri": "urn:healthit-gov:qdm:v5_3",
                "version": "5.3"
              }
            ]
          },
          "parameters": {
            "def": [
              {
                "localId": "13",
                "name": "Measurement Period",
                "accessLevel": "Public",
                "parameterTypeSpecifier": {
                  "localId": "12",
                  "type": "IntervalTypeSpecifier",
                  "pointType": {
                    "localId": "11",
                    "name": "{urn:hl7-org:elm-types:r1}DateTime",
                    "type": "NamedTypeSpecifier"
                  }
                }
              }
            ]
          },
          "codeSystems": {
            "def": [
              {
                "localId": "2",
                "name": "LOINC",
                "id": "2.16.840.1.113883.6.1",
                "accessLevel": "Public"
              },
              {
                "localId": "3",
                "name": "SNOMEDCT",
                "id": "2.16.840.1.113883.6.96",
                "accessLevel": "Public"
              }
            ]
          },
          "valueSets": {
            "def": [
              {
                "localId": "4",
                "name": "Emergency Department Visit",
                "id": "2.16.840.1.113883.3.117.1.7.1.292",
                "accessLevel": "Public"
              },
              {
                "localId": "5",
                "name": "Encounter Inpatient",
                "id": "2.16.840.1.113883.3.666.5.307",
                "accessLevel": "Public"
              },
              {
                "localId": "6",
                "name": "Intensive Care Unit",
                "id": "2.16.840.1.113762.1.4.1110.23",
                "accessLevel": "Public"
              }
            ]
          },
          "codes": {
            "def": [
              {
                "localId": "8",
                "name": "Birthdate",
                "id": "21112-8",
                "display": "Birthdate",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "7",
                  "name": "LOINC"
                }
              },
              {
                "localId": "10",
                "name": "Dead",
                "id": "419099009",
                "display": "Dead",
                "accessLevel": "Public",
                "codeSystem": {
                  "localId": "9",
                  "name": "SNOMEDCT"
                }
              }
            ]
          },
          "statements": {
            "def": [
              {
                "name": "Patient",
                "context": "Patient",
                "expression": {
                  "type": "SingletonFrom",
                  "operand": {
                    "dataType": "{urn:healthit-gov:qdm:v5_3}Patient",
                    "templateId": "Patient",
                    "type": "Retrieve"
                  }
                }
              },
              {
                "localId": "15",
                "name": "Encounter",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "15",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Encounter\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "14",
                          "s": [
                            {
                              "value": [
                                "[",
                                "\"Encounter, Performed\"",
                                ": "
                              ]
                            },
                            {
                              "s": [
                                {
                                  "value": [
                                    "\"Emergency Department Visit\""
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "]"
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "14",
                  "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                  "templateId": "PositiveEncounterPerformed",
                  "codeProperty": "code",
                  "type": "Retrieve",
                  "codes": {
                    "name": "Emergency Department Visit",
                    "type": "ValueSetRef"
                  }
                }
              },
              {
                "localId": "27",
                "name": "LengthInDays",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "27",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"LengthInDays\"",
                            "(",
                            "Value",
                            " "
                          ]
                        },
                        {
                          "r": "21",
                          "s": [
                            {
                              "value": [
                                "Interval<"
                              ]
                            },
                            {
                              "r": "20",
                              "s": [
                                {
                                  "value": [
                                    "DateTime"
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                ">"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "26",
                          "s": [
                            {
                              "r": "26",
                              "s": [
                                {
                                  "value": [
                                    "difference in days between "
                                  ]
                                },
                                {
                                  "r": "23",
                                  "s": [
                                    {
                                      "value": [
                                        "start of "
                                      ]
                                    },
                                    {
                                      "r": "22",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    " and \r\n\t"
                                  ]
                                },
                                {
                                  "r": "25",
                                  "s": [
                                    {
                                      "value": [
                                        "end of "
                                      ]
                                    },
                                    {
                                      "r": "24",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "26",
                  "precision": "Day",
                  "type": "DifferenceBetween",
                  "operand": [
                    {
                      "localId": "23",
                      "type": "Start",
                      "operand": {
                        "localId": "22",
                        "name": "Value",
                        "type": "OperandRef"
                      }
                    },
                    {
                      "localId": "25",
                      "type": "End",
                      "operand": {
                        "localId": "24",
                        "name": "Value",
                        "type": "OperandRef"
                      }
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "Value",
                    "operandTypeSpecifier": {
                      "localId": "21",
                      "type": "IntervalTypeSpecifier",
                      "pointType": {
                        "localId": "20",
                        "name": "{urn:hl7-org:elm-types:r1}DateTime",
                        "type": "NamedTypeSpecifier"
                      }
                    }
                  }
                ]
              },
              {
                "localId": "37",
                "name": "Inpatient Encounter",
                "context": "Patient",
                "accessLevel": "Public",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "37",
                      "s": [
                        {
                          "value": [
                            "define ",
                            "\"Inpatient Encounter\"",
                            ":\r\n\t"
                          ]
                        },
                        {
                          "r": "36",
                          "s": [
                            {
                              "s": [
                                {
                                  "r": "17",
                                  "s": [
                                    {
                                      "r": "16",
                                      "s": [
                                        {
                                          "r": "16",
                                          "s": [
                                            {
                                              "value": [
                                                "[",
                                                "\"Encounter, Performed\"",
                                                ": "
                                              ]
                                            },
                                            {
                                              "s": [
                                                {
                                                  "value": [
                                                    "\"Encounter Inpatient\""
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "]"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        " ",
                                        "EncounterInpatient"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            },
                            {
                              "value": [
                                "\r\n\t\t"
                              ]
                            },
                            {
                              "r": "35",
                              "s": [
                                {
                                  "value": [
                                    "where "
                                  ]
                                },
                                {
                                  "r": "35",
                                  "s": [
                                    {
                                      "r": "30",
                                      "s": [
                                        {
                                          "r": "28",
                                          "s": [
                                            {
                                              "value": [
                                                "\"LengthInDays\"",
                                                "("
                                              ]
                                            },
                                            {
                                              "r": "19",
                                              "s": [
                                                {
                                                  "r": "18",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "EncounterInpatient"
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "."
                                                  ]
                                                },
                                                {
                                                  "r": "19",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "relevantPeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ")"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "<=",
                                            " ",
                                            "120"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\tand "
                                      ]
                                    },
                                    {
                                      "r": "34",
                                      "s": [
                                        {
                                          "r": "32",
                                          "s": [
                                            {
                                              "r": "31",
                                              "s": [
                                                {
                                                  "value": [
                                                    "EncounterInpatient"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "32",
                                              "s": [
                                                {
                                                  "value": [
                                                    "relevantPeriod"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "ends during",
                                            " "
                                          ]
                                        },
                                        {
                                          "r": "33",
                                          "s": [
                                            {
                                              "value": [
                                                "\"Measurement Period\""
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "36",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "17",
                      "alias": "EncounterInpatient",
                      "expression": {
                        "localId": "16",
                        "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                        "templateId": "PositiveEncounterPerformed",
                        "codeProperty": "code",
                        "type": "Retrieve",
                        "codes": {
                          "name": "Encounter Inpatient",
                          "type": "ValueSetRef"
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "where": {
                    "localId": "35",
                    "type": "And",
                    "operand": [
                      {
                        "localId": "30",
                        "type": "LessOrEqual",
                        "operand": [
                          {
                            "localId": "28",
                            "name": "LengthInDays",
                            "type": "FunctionRef",
                            "operand": [
                              {
                                "localId": "19",
                                "path": "relevantPeriod",
                                "scope": "EncounterInpatient",
                                "type": "Property"
                              }
                            ]
                          },
                          {
                            "localId": "29",
                            "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                            "value": "120",
                            "type": "Literal"
                          }
                        ]
                      },
                      {
                        "localId": "34",
                        "type": "In",
                        "operand": [
                          {
                            "type": "End",
                            "operand": {
                              "localId": "32",
                              "path": "relevantPeriod",
                              "scope": "EncounterInpatient",
                              "type": "Property"
                            }
                          },
                          {
                            "localId": "33",
                            "name": "Measurement Period",
                            "type": "ParameterRef"
                          }
                        ]
                      }
                    ]
                  }
                }
              },
              {
                "localId": "52",
                "name": "ToDate",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "52",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"ToDate\"",
                            "(",
                            "Value",
                            " "
                          ]
                        },
                        {
                          "r": "38",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "51",
                          "s": [
                            {
                              "r": "51",
                              "s": [
                                {
                                  "value": [
                                    "DateTime",
                                    "("
                                  ]
                                },
                                {
                                  "r": "40",
                                  "s": [
                                    {
                                      "value": [
                                        "year from "
                                      ]
                                    },
                                    {
                                      "r": "39",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", "
                                  ]
                                },
                                {
                                  "r": "42",
                                  "s": [
                                    {
                                      "value": [
                                        "month from "
                                      ]
                                    },
                                    {
                                      "r": "41",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", "
                                  ]
                                },
                                {
                                  "r": "44",
                                  "s": [
                                    {
                                      "value": [
                                        "day from "
                                      ]
                                    },
                                    {
                                      "r": "43",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", ",
                                    "0",
                                    ", ",
                                    "0",
                                    ", ",
                                    "0",
                                    ", ",
                                    "0",
                                    ", "
                                  ]
                                },
                                {
                                  "r": "50",
                                  "s": [
                                    {
                                      "value": [
                                        "timezone from "
                                      ]
                                    },
                                    {
                                      "r": "49",
                                      "s": [
                                        {
                                          "value": [
                                            "Value"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "51",
                  "type": "DateTime",
                  "year": {
                    "localId": "40",
                    "precision": "Year",
                    "type": "DateTimeComponentFrom",
                    "operand": {
                      "localId": "39",
                      "name": "Value",
                      "type": "OperandRef"
                    }
                  },
                  "month": {
                    "localId": "42",
                    "precision": "Month",
                    "type": "DateTimeComponentFrom",
                    "operand": {
                      "localId": "41",
                      "name": "Value",
                      "type": "OperandRef"
                    }
                  },
                  "day": {
                    "localId": "44",
                    "precision": "Day",
                    "type": "DateTimeComponentFrom",
                    "operand": {
                      "localId": "43",
                      "name": "Value",
                      "type": "OperandRef"
                    }
                  },
                  "hour": {
                    "localId": "45",
                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                    "value": "0",
                    "type": "Literal"
                  },
                  "minute": {
                    "localId": "46",
                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                    "value": "0",
                    "type": "Literal"
                  },
                  "second": {
                    "localId": "47",
                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                    "value": "0",
                    "type": "Literal"
                  },
                  "millisecond": {
                    "localId": "48",
                    "valueType": "{urn:hl7-org:elm-types:r1}Integer",
                    "value": "0",
                    "type": "Literal"
                  },
                  "timezoneOffset": {
                    "localId": "50",
                    "type": "TimezoneFrom",
                    "operand": {
                      "localId": "49",
                      "name": "Value",
                      "type": "OperandRef"
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Value",
                    "operandTypeSpecifier": {
                      "localId": "38",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "60",
                "name": "CalendarAgeInDaysAt",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "60",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInDaysAt\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "53",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "AsOf",
                            " "
                          ]
                        },
                        {
                          "r": "54",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "59",
                          "s": [
                            {
                              "r": "59",
                              "s": [
                                {
                                  "value": [
                                    "days between "
                                  ]
                                },
                                {
                                  "r": "56",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "55",
                                      "s": [
                                        {
                                          "value": [
                                            "BirthDateTime"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "and "
                                  ]
                                },
                                {
                                  "r": "58",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "57",
                                      "s": [
                                        {
                                          "value": [
                                            "AsOf"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "59",
                  "precision": "Day",
                  "type": "DurationBetween",
                  "operand": [
                    {
                      "localId": "56",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "55",
                          "name": "BirthDateTime",
                          "type": "OperandRef"
                        }
                      ]
                    },
                    {
                      "localId": "58",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "57",
                          "name": "AsOf",
                          "type": "OperandRef"
                        }
                      ]
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "53",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "AsOf",
                    "operandTypeSpecifier": {
                      "localId": "54",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "65",
                "name": "CalendarAgeInDays",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "65",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInDays\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "61",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "64",
                          "s": [
                            {
                              "r": "64",
                              "s": [
                                {
                                  "value": [
                                    "CalendarAgeInDaysAt",
                                    "("
                                  ]
                                },
                                {
                                  "r": "62",
                                  "s": [
                                    {
                                      "value": [
                                        "BirthDateTime"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", "
                                  ]
                                },
                                {
                                  "r": "63",
                                  "s": [
                                    {
                                      "value": [
                                        "Today",
                                        "()"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "64",
                  "name": "CalendarAgeInDaysAt",
                  "type": "FunctionRef",
                  "operand": [
                    {
                      "localId": "62",
                      "name": "BirthDateTime",
                      "type": "OperandRef"
                    },
                    {
                      "type": "ToDateTime",
                      "operand": {
                        "localId": "63",
                        "type": "Today"
                      }
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "61",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "73",
                "name": "CalendarAgeInMonthsAt",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "73",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInMonthsAt\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "66",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "AsOf",
                            " "
                          ]
                        },
                        {
                          "r": "67",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "72",
                          "s": [
                            {
                              "r": "72",
                              "s": [
                                {
                                  "value": [
                                    "months between "
                                  ]
                                },
                                {
                                  "r": "69",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "68",
                                      "s": [
                                        {
                                          "value": [
                                            "BirthDateTime"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "and "
                                  ]
                                },
                                {
                                  "r": "71",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "70",
                                      "s": [
                                        {
                                          "value": [
                                            "AsOf"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "72",
                  "precision": "Month",
                  "type": "DurationBetween",
                  "operand": [
                    {
                      "localId": "69",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "68",
                          "name": "BirthDateTime",
                          "type": "OperandRef"
                        }
                      ]
                    },
                    {
                      "localId": "71",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "70",
                          "name": "AsOf",
                          "type": "OperandRef"
                        }
                      ]
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "66",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "AsOf",
                    "operandTypeSpecifier": {
                      "localId": "67",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "78",
                "name": "CalendarAgeInMonths",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "78",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInMonths\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "74",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "77",
                          "s": [
                            {
                              "r": "77",
                              "s": [
                                {
                                  "value": [
                                    "CalendarAgeInMonthsAt",
                                    "("
                                  ]
                                },
                                {
                                  "r": "75",
                                  "s": [
                                    {
                                      "value": [
                                        "BirthDateTime"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", "
                                  ]
                                },
                                {
                                  "r": "76",
                                  "s": [
                                    {
                                      "value": [
                                        "Today",
                                        "()"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "77",
                  "name": "CalendarAgeInMonthsAt",
                  "type": "FunctionRef",
                  "operand": [
                    {
                      "localId": "75",
                      "name": "BirthDateTime",
                      "type": "OperandRef"
                    },
                    {
                      "type": "ToDateTime",
                      "operand": {
                        "localId": "76",
                        "type": "Today"
                      }
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "74",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "86",
                "name": "CalendarAgeInYearsAt",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "86",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInYearsAt\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "79",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            ", ",
                            "AsOf",
                            " "
                          ]
                        },
                        {
                          "r": "80",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "85",
                          "s": [
                            {
                              "r": "85",
                              "s": [
                                {
                                  "value": [
                                    "years between "
                                  ]
                                },
                                {
                                  "r": "82",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "81",
                                      "s": [
                                        {
                                          "value": [
                                            "BirthDateTime"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "and "
                                  ]
                                },
                                {
                                  "r": "84",
                                  "s": [
                                    {
                                      "value": [
                                        "\"ToDate\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "83",
                                      "s": [
                                        {
                                          "value": [
                                            "AsOf"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "85",
                  "precision": "Year",
                  "type": "DurationBetween",
                  "operand": [
                    {
                      "localId": "82",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "81",
                          "name": "BirthDateTime",
                          "type": "OperandRef"
                        }
                      ]
                    },
                    {
                      "localId": "84",
                      "name": "ToDate",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "83",
                          "name": "AsOf",
                          "type": "OperandRef"
                        }
                      ]
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "79",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  },
                  {
                    "name": "AsOf",
                    "operandTypeSpecifier": {
                      "localId": "80",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "91",
                "name": "CalendarAgeInYears",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "91",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"CalendarAgeInYears\"",
                            "(",
                            "BirthDateTime",
                            " "
                          ]
                        },
                        {
                          "r": "87",
                          "s": [
                            {
                              "value": [
                                "DateTime"
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "90",
                          "s": [
                            {
                              "r": "90",
                              "s": [
                                {
                                  "value": [
                                    "CalendarAgeInYearsAt",
                                    "("
                                  ]
                                },
                                {
                                  "r": "88",
                                  "s": [
                                    {
                                      "value": [
                                        "BirthDateTime"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ", "
                                  ]
                                },
                                {
                                  "r": "89",
                                  "s": [
                                    {
                                      "value": [
                                        "Today",
                                        "()"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "90",
                  "name": "CalendarAgeInYearsAt",
                  "type": "FunctionRef",
                  "operand": [
                    {
                      "localId": "88",
                      "name": "BirthDateTime",
                      "type": "OperandRef"
                    },
                    {
                      "type": "ToDateTime",
                      "operand": {
                        "localId": "89",
                        "type": "Today"
                      }
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "BirthDateTime",
                    "operandTypeSpecifier": {
                      "localId": "87",
                      "name": "{urn:hl7-org:elm-types:r1}DateTime",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "119",
                "name": "Hospitalization",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "119",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospitalization\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "92",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "118",
                          "s": [
                            {
                              "r": "118",
                              "s": [
                                {
                                  "s": [
                                    {
                                      "r": "104",
                                      "s": [
                                        {
                                          "r": "103",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "103",
                                              "s": [
                                                {
                                                  "value": [
                                                    "singleton from "
                                                  ]
                                                },
                                                {
                                                  "r": "102",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "( "
                                                      ]
                                                    },
                                                    {
                                                      "r": "102",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "r": "94",
                                                              "s": [
                                                                {
                                                                  "r": "93",
                                                                  "s": [
                                                                    {
                                                                      "r": "93",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "[",
                                                                            "\"Encounter, Performed\"",
                                                                            ": "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "\"Emergency Department Visit\""
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "]"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " ",
                                                                    "EDVisit"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "r": "101",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "where "
                                                              ]
                                                            },
                                                            {
                                                              "r": "101",
                                                              "s": [
                                                                {
                                                                  "r": "96",
                                                                  "s": [
                                                                    {
                                                                      "r": "95",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "EDVisit"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "96",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "101",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "ends "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "100",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "1 ",
                                                                            "hour"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        " or less on or before"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "99",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "start of "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "98",
                                                                      "s": [
                                                                        {
                                                                          "r": "97",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "Encounter"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "."
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "98",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "relevantPeriod"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t)"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "X"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "117",
                                  "s": [
                                    {
                                      "value": [
                                        "return "
                                      ]
                                    },
                                    {
                                      "r": "116",
                                      "s": [
                                        {
                                          "value": [
                                            "if "
                                          ]
                                        },
                                        {
                                          "r": "106",
                                          "s": [
                                            {
                                              "r": "105",
                                              "s": [
                                                {
                                                  "value": [
                                                    "X"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " is null"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " then "
                                          ]
                                        },
                                        {
                                          "r": "108",
                                          "s": [
                                            {
                                              "r": "107",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Encounter"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "108",
                                              "s": [
                                                {
                                                  "value": [
                                                    "relevantPeriod"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " \r\n\t\t\telse "
                                          ]
                                        },
                                        {
                                          "r": "115",
                                          "s": [
                                            {
                                              "value": [
                                                "Interval["
                                              ]
                                            },
                                            {
                                              "r": "111",
                                              "s": [
                                                {
                                                  "value": [
                                                    "start of "
                                                  ]
                                                },
                                                {
                                                  "r": "110",
                                                  "s": [
                                                    {
                                                      "r": "109",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "X"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "110",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "relevantPeriod"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                ", \r\n\t\t"
                                              ]
                                            },
                                            {
                                              "r": "114",
                                              "s": [
                                                {
                                                  "value": [
                                                    "end of "
                                                  ]
                                                },
                                                {
                                                  "r": "113",
                                                  "s": [
                                                    {
                                                      "r": "112",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Encounter"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "113",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "relevantPeriod"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "]"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "118",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "104",
                      "alias": "X",
                      "expression": {
                        "localId": "103",
                        "type": "SingletonFrom",
                        "operand": {
                          "localId": "102",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "94",
                              "alias": "EDVisit",
                              "expression": {
                                "localId": "93",
                                "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                "templateId": "PositiveEncounterPerformed",
                                "codeProperty": "code",
                                "type": "Retrieve",
                                "codes": {
                                  "name": "Emergency Department Visit",
                                  "type": "ValueSetRef"
                                }
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "where": {
                            "localId": "101",
                            "type": "In",
                            "operand": [
                              {
                                "type": "End",
                                "operand": {
                                  "localId": "96",
                                  "path": "relevantPeriod",
                                  "scope": "EDVisit",
                                  "type": "Property"
                                }
                              },
                              {
                                "lowClosed": true,
                                "highClosed": true,
                                "type": "Interval",
                                "low": {
                                  "type": "Subtract",
                                  "operand": [
                                    {
                                      "localId": "99",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "98",
                                        "path": "relevantPeriod",
                                        "type": "Property",
                                        "source": {
                                          "localId": "97",
                                          "name": "Encounter",
                                          "type": "OperandRef"
                                        }
                                      }
                                    },
                                    {
                                      "localId": "100",
                                      "value": 1,
                                      "unit": "hour",
                                      "type": "Quantity"
                                    }
                                  ]
                                },
                                "high": {
                                  "localId": "99",
                                  "type": "Start",
                                  "operand": {
                                    "localId": "98",
                                    "path": "relevantPeriod",
                                    "type": "Property",
                                    "source": {
                                      "localId": "97",
                                      "name": "Encounter",
                                      "type": "OperandRef"
                                    }
                                  }
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "117",
                    "expression": {
                      "localId": "116",
                      "type": "If",
                      "condition": {
                        "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                        "type": "As",
                        "operand": {
                          "localId": "106",
                          "type": "IsNull",
                          "operand": {
                            "localId": "105",
                            "name": "X",
                            "type": "AliasRef"
                          }
                        }
                      },
                      "then": {
                        "localId": "108",
                        "path": "relevantPeriod",
                        "type": "Property",
                        "source": {
                          "localId": "107",
                          "name": "Encounter",
                          "type": "OperandRef"
                        }
                      },
                      "else": {
                        "localId": "115",
                        "lowClosed": true,
                        "highClosed": true,
                        "type": "Interval",
                        "low": {
                          "localId": "111",
                          "type": "Start",
                          "operand": {
                            "localId": "110",
                            "path": "relevantPeriod",
                            "scope": "X",
                            "type": "Property"
                          }
                        },
                        "high": {
                          "localId": "114",
                          "type": "End",
                          "operand": {
                            "localId": "113",
                            "path": "relevantPeriod",
                            "type": "Property",
                            "source": {
                              "localId": "112",
                              "name": "Encounter",
                              "type": "OperandRef"
                            }
                          }
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "92",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "149",
                "name": "Hospitalization Locations",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "149",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospitalization Locations\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "123",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "148",
                          "s": [
                            {
                              "r": "148",
                              "s": [
                                {
                                  "s": [
                                    {
                                      "r": "135",
                                      "s": [
                                        {
                                          "r": "134",
                                          "s": [
                                            {
                                              "value": [
                                                "( "
                                              ]
                                            },
                                            {
                                              "r": "134",
                                              "s": [
                                                {
                                                  "value": [
                                                    "singleton from "
                                                  ]
                                                },
                                                {
                                                  "r": "133",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "( "
                                                      ]
                                                    },
                                                    {
                                                      "r": "133",
                                                      "s": [
                                                        {
                                                          "s": [
                                                            {
                                                              "r": "125",
                                                              "s": [
                                                                {
                                                                  "r": "124",
                                                                  "s": [
                                                                    {
                                                                      "r": "124",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "[",
                                                                            "\"Encounter, Performed\"",
                                                                            ": "
                                                                          ]
                                                                        },
                                                                        {
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "\"Emergency Department Visit\""
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "]"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " ",
                                                                    "EDVisit"
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            "\r\n\t\t\t"
                                                          ]
                                                        },
                                                        {
                                                          "r": "132",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "where "
                                                              ]
                                                            },
                                                            {
                                                              "r": "132",
                                                              "s": [
                                                                {
                                                                  "r": "127",
                                                                  "s": [
                                                                    {
                                                                      "r": "126",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "EDVisit"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        "."
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "127",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "relevantPeriod"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "132",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "ends "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "131",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "1 ",
                                                                            "hour"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        " or less on or before"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    " "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "130",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "start of "
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "129",
                                                                      "s": [
                                                                        {
                                                                          "r": "128",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "Encounter"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        },
                                                                        {
                                                                          "value": [
                                                                            "."
                                                                          ]
                                                                        },
                                                                        {
                                                                          "r": "129",
                                                                          "s": [
                                                                            {
                                                                              "value": [
                                                                                "relevantPeriod"
                                                                              ]
                                                                            }
                                                                          ]
                                                                        }
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t)"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " )"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " ",
                                            "EDEncounter"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t\t"
                                  ]
                                },
                                {
                                  "r": "147",
                                  "s": [
                                    {
                                      "value": [
                                        "return "
                                      ]
                                    },
                                    {
                                      "r": "146",
                                      "s": [
                                        {
                                          "value": [
                                            "if "
                                          ]
                                        },
                                        {
                                          "r": "137",
                                          "s": [
                                            {
                                              "r": "136",
                                              "s": [
                                                {
                                                  "value": [
                                                    "EDEncounter"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                " is null"
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " then "
                                          ]
                                        },
                                        {
                                          "r": "139",
                                          "s": [
                                            {
                                              "r": "138",
                                              "s": [
                                                {
                                                  "value": [
                                                    "Encounter"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "."
                                              ]
                                            },
                                            {
                                              "r": "139",
                                              "s": [
                                                {
                                                  "value": [
                                                    "facilityLocations"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            " \r\n\t\t\telse "
                                          ]
                                        },
                                        {
                                          "r": "145",
                                          "s": [
                                            {
                                              "value": [
                                                "flatten "
                                              ]
                                            },
                                            {
                                              "r": "144",
                                              "s": [
                                                {
                                                  "value": [
                                                    "{ "
                                                  ]
                                                },
                                                {
                                                  "r": "141",
                                                  "s": [
                                                    {
                                                      "r": "140",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "EDEncounter"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "141",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "facilityLocations"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ", "
                                                  ]
                                                },
                                                {
                                                  "r": "143",
                                                  "s": [
                                                    {
                                                      "r": "142",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Encounter"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "143",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "facilityLocations"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " }"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "148",
                  "type": "Query",
                  "source": [
                    {
                      "localId": "135",
                      "alias": "EDEncounter",
                      "expression": {
                        "localId": "134",
                        "type": "SingletonFrom",
                        "operand": {
                          "localId": "133",
                          "type": "Query",
                          "source": [
                            {
                              "localId": "125",
                              "alias": "EDVisit",
                              "expression": {
                                "localId": "124",
                                "dataType": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                                "templateId": "PositiveEncounterPerformed",
                                "codeProperty": "code",
                                "type": "Retrieve",
                                "codes": {
                                  "name": "Emergency Department Visit",
                                  "type": "ValueSetRef"
                                }
                              }
                            }
                          ],
                          "relationship": [

                          ],
                          "where": {
                            "localId": "132",
                            "type": "In",
                            "operand": [
                              {
                                "type": "End",
                                "operand": {
                                  "localId": "127",
                                  "path": "relevantPeriod",
                                  "scope": "EDVisit",
                                  "type": "Property"
                                }
                              },
                              {
                                "lowClosed": true,
                                "highClosed": true,
                                "type": "Interval",
                                "low": {
                                  "type": "Subtract",
                                  "operand": [
                                    {
                                      "localId": "130",
                                      "type": "Start",
                                      "operand": {
                                        "localId": "129",
                                        "path": "relevantPeriod",
                                        "type": "Property",
                                        "source": {
                                          "localId": "128",
                                          "name": "Encounter",
                                          "type": "OperandRef"
                                        }
                                      }
                                    },
                                    {
                                      "localId": "131",
                                      "value": 1,
                                      "unit": "hour",
                                      "type": "Quantity"
                                    }
                                  ]
                                },
                                "high": {
                                  "localId": "130",
                                  "type": "Start",
                                  "operand": {
                                    "localId": "129",
                                    "path": "relevantPeriod",
                                    "type": "Property",
                                    "source": {
                                      "localId": "128",
                                      "name": "Encounter",
                                      "type": "OperandRef"
                                    }
                                  }
                                }
                              }
                            ]
                          }
                        }
                      }
                    }
                  ],
                  "relationship": [

                  ],
                  "return": {
                    "localId": "147",
                    "expression": {
                      "localId": "146",
                      "type": "If",
                      "condition": {
                        "asType": "{urn:hl7-org:elm-types:r1}Boolean",
                        "type": "As",
                        "operand": {
                          "localId": "137",
                          "type": "IsNull",
                          "operand": {
                            "localId": "136",
                            "name": "EDEncounter",
                            "type": "AliasRef"
                          }
                        }
                      },
                      "then": {
                        "localId": "139",
                        "path": "facilityLocations",
                        "type": "Property",
                        "source": {
                          "localId": "138",
                          "name": "Encounter",
                          "type": "OperandRef"
                        }
                      },
                      "else": {
                        "localId": "145",
                        "type": "Flatten",
                        "operand": {
                          "localId": "144",
                          "type": "List",
                          "element": [
                            {
                              "localId": "141",
                              "path": "facilityLocations",
                              "scope": "EDEncounter",
                              "type": "Property"
                            },
                            {
                              "localId": "143",
                              "path": "facilityLocations",
                              "type": "Property",
                              "source": {
                                "localId": "142",
                                "name": "Encounter",
                                "type": "OperandRef"
                              }
                            }
                          ]
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "123",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "154",
                "name": "Hospitalization Length of Stay",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "154",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospitalization Length of Stay\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "150",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "153",
                          "s": [
                            {
                              "r": "153",
                              "s": [
                                {
                                  "value": [
                                    "LengthInDays",
                                    "("
                                  ]
                                },
                                {
                                  "r": "152",
                                  "s": [
                                    {
                                      "value": [
                                        "\"Hospitalization\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "151",
                                      "s": [
                                        {
                                          "value": [
                                            "Encounter"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    ")"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "153",
                  "name": "LengthInDays",
                  "type": "FunctionRef",
                  "operand": [
                    {
                      "localId": "152",
                      "name": "Hospitalization",
                      "type": "FunctionRef",
                      "operand": [
                        {
                          "localId": "151",
                          "name": "Encounter",
                          "type": "OperandRef"
                        }
                      ]
                    }
                  ]
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "150",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "159",
                "name": "Hospital Admission Time",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "159",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospital Admission Time\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "155",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "158",
                          "s": [
                            {
                              "r": "158",
                              "s": [
                                {
                                  "value": [
                                    "start of "
                                  ]
                                },
                                {
                                  "r": "157",
                                  "s": [
                                    {
                                      "value": [
                                        "\"Hospitalization\"",
                                        "("
                                      ]
                                    },
                                    {
                                      "r": "156",
                                      "s": [
                                        {
                                          "value": [
                                            "Encounter"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        ")"
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "158",
                  "type": "Start",
                  "operand": {
                    "localId": "157",
                    "name": "Hospitalization",
                    "type": "FunctionRef",
                    "operand": [
                      {
                        "localId": "156",
                        "name": "Encounter",
                        "type": "OperandRef"
                      }
                    ]
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "155",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "164",
                "name": "Hospital Discharge Time",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "164",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospital Discharge Time\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "160",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t\r\n\t"
                          ]
                        },
                        {
                          "r": "163",
                          "s": [
                            {
                              "r": "163",
                              "s": [
                                {
                                  "value": [
                                    "end of "
                                  ]
                                },
                                {
                                  "r": "162",
                                  "s": [
                                    {
                                      "r": "161",
                                      "s": [
                                        {
                                          "value": [
                                            "Encounter"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "162",
                                      "s": [
                                        {
                                          "value": [
                                            "relevantPeriod"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "163",
                  "type": "End",
                  "operand": {
                    "localId": "162",
                    "path": "relevantPeriod",
                    "type": "Property",
                    "source": {
                      "localId": "161",
                      "name": "Encounter",
                      "type": "OperandRef"
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "160",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "177",
                "name": "Hospital Arrival Time",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "177",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospital Arrival Time\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "165",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "176",
                          "s": [
                            {
                              "r": "176",
                              "s": [
                                {
                                  "value": [
                                    "start of "
                                  ]
                                },
                                {
                                  "r": "175",
                                  "s": [
                                    {
                                      "r": "174",
                                      "s": [
                                        {
                                          "value": [
                                            "First",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "173",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "168",
                                                  "s": [
                                                    {
                                                      "r": "167",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "167",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Hospitalization Locations\"",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "166",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Encounter"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "HospitalLocation"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "172",
                                              "s": [
                                                {
                                                  "value": [
                                                    "sort by "
                                                  ]
                                                },
                                                {
                                                  "r": "171",
                                                  "s": [
                                                    {
                                                      "r": "170",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "start of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "169",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "locationPeriod"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t)"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "175",
                                      "s": [
                                        {
                                          "value": [
                                            "locationPeriod"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "176",
                  "type": "Start",
                  "operand": {
                    "localId": "175",
                    "path": "locationPeriod",
                    "type": "Property",
                    "source": {
                      "localId": "174",
                      "type": "First",
                      "source": {
                        "localId": "173",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "168",
                            "alias": "HospitalLocation",
                            "expression": {
                              "localId": "167",
                              "name": "Hospitalization Locations",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "166",
                                  "name": "Encounter",
                                  "type": "OperandRef"
                                }
                              ]
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "sort": {
                          "localId": "172",
                          "by": [
                            {
                              "localId": "171",
                              "direction": "asc",
                              "type": "ByExpression",
                              "expression": {
                                "localId": "170",
                                "type": "Start",
                                "operand": {
                                  "localId": "169",
                                  "name": "locationPeriod",
                                  "type": "IdentifierRef"
                                }
                              }
                            }
                          ]
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "165",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "190",
                "name": "Hospital Departure Time",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "190",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Hospital Departure Time\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "178",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t\r\n\t"
                          ]
                        },
                        {
                          "r": "189",
                          "s": [
                            {
                              "r": "189",
                              "s": [
                                {
                                  "value": [
                                    "end of "
                                  ]
                                },
                                {
                                  "r": "188",
                                  "s": [
                                    {
                                      "r": "187",
                                      "s": [
                                        {
                                          "value": [
                                            "Last",
                                            "("
                                          ]
                                        },
                                        {
                                          "r": "186",
                                          "s": [
                                            {
                                              "s": [
                                                {
                                                  "r": "181",
                                                  "s": [
                                                    {
                                                      "r": "180",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "("
                                                          ]
                                                        },
                                                        {
                                                          "r": "180",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "\"Hospitalization Locations\"",
                                                                "("
                                                              ]
                                                            },
                                                            {
                                                              "r": "179",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "Encounter"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                ")"
                                                              ]
                                                            }
                                                          ]
                                                        },
                                                        {
                                                          "value": [
                                                            ")"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "HospitalLocation"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t"
                                              ]
                                            },
                                            {
                                              "r": "185",
                                              "s": [
                                                {
                                                  "value": [
                                                    "sort by "
                                                  ]
                                                },
                                                {
                                                  "r": "184",
                                                  "s": [
                                                    {
                                                      "r": "183",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "start of "
                                                          ]
                                                        },
                                                        {
                                                          "r": "182",
                                                          "s": [
                                                            {
                                                              "value": [
                                                                "locationPeriod"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t)"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "188",
                                      "s": [
                                        {
                                          "value": [
                                            "locationPeriod"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "189",
                  "type": "End",
                  "operand": {
                    "localId": "188",
                    "path": "locationPeriod",
                    "type": "Property",
                    "source": {
                      "localId": "187",
                      "type": "Last",
                      "source": {
                        "localId": "186",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "181",
                            "alias": "HospitalLocation",
                            "expression": {
                              "localId": "180",
                              "name": "Hospitalization Locations",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "179",
                                  "name": "Encounter",
                                  "type": "OperandRef"
                                }
                              ]
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "sort": {
                          "localId": "185",
                          "by": [
                            {
                              "localId": "184",
                              "direction": "asc",
                              "type": "ByExpression",
                              "expression": {
                                "localId": "183",
                                "type": "Start",
                                "operand": {
                                  "localId": "182",
                                  "name": "locationPeriod",
                                  "type": "IdentifierRef"
                                }
                              }
                            }
                          ]
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "178",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "203",
                "name": "Emergency Department Arrival Time",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "203",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"Emergency Department Arrival Time\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "191",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "202",
                          "s": [
                            {
                              "r": "202",
                              "s": [
                                {
                                  "value": [
                                    "start of "
                                  ]
                                },
                                {
                                  "r": "201",
                                  "s": [
                                    {
                                      "r": "200",
                                      "s": [
                                        {
                                          "value": [
                                            "( "
                                          ]
                                        },
                                        {
                                          "r": "200",
                                          "s": [
                                            {
                                              "value": [
                                                "singleton from "
                                              ]
                                            },
                                            {
                                              "r": "199",
                                              "s": [
                                                {
                                                  "value": [
                                                    "( "
                                                  ]
                                                },
                                                {
                                                  "r": "199",
                                                  "s": [
                                                    {
                                                      "s": [
                                                        {
                                                          "r": "194",
                                                          "s": [
                                                            {
                                                              "r": "193",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "( "
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "193",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "\"Hospitalization Locations\"",
                                                                        "("
                                                                      ]
                                                                    },
                                                                    {
                                                                      "r": "192",
                                                                      "s": [
                                                                        {
                                                                          "value": [
                                                                            "Encounter"
                                                                          ]
                                                                        }
                                                                      ]
                                                                    },
                                                                    {
                                                                      "value": [
                                                                        ")"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    ")"
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " ",
                                                                "HospitalLocation"
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "\r\n\t\t\t\t"
                                                      ]
                                                    },
                                                    {
                                                      "r": "198",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "where "
                                                          ]
                                                        },
                                                        {
                                                          "r": "198",
                                                          "s": [
                                                            {
                                                              "r": "196",
                                                              "s": [
                                                                {
                                                                  "r": "195",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "HospitalLocation"
                                                                      ]
                                                                    }
                                                                  ]
                                                                },
                                                                {
                                                                  "value": [
                                                                    "."
                                                                  ]
                                                                },
                                                                {
                                                                  "r": "196",
                                                                  "s": [
                                                                    {
                                                                      "value": [
                                                                        "code"
                                                                      ]
                                                                    }
                                                                  ]
                                                                }
                                                              ]
                                                            },
                                                            {
                                                              "value": [
                                                                " in "
                                                              ]
                                                            },
                                                            {
                                                              "r": "197",
                                                              "s": [
                                                                {
                                                                  "value": [
                                                                    "\"Emergency Department Visit\""
                                                                  ]
                                                                }
                                                              ]
                                                            }
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    "\r\n\t\t)"
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        },
                                        {
                                          "value": [
                                            "\r\n\t)"
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "."
                                      ]
                                    },
                                    {
                                      "r": "201",
                                      "s": [
                                        {
                                          "value": [
                                            "locationPeriod"
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "202",
                  "type": "Start",
                  "operand": {
                    "localId": "201",
                    "path": "locationPeriod",
                    "type": "Property",
                    "source": {
                      "localId": "200",
                      "type": "SingletonFrom",
                      "operand": {
                        "localId": "199",
                        "type": "Query",
                        "source": [
                          {
                            "localId": "194",
                            "alias": "HospitalLocation",
                            "expression": {
                              "localId": "193",
                              "name": "Hospitalization Locations",
                              "type": "FunctionRef",
                              "operand": [
                                {
                                  "localId": "192",
                                  "name": "Encounter",
                                  "type": "OperandRef"
                                }
                              ]
                            }
                          }
                        ],
                        "relationship": [

                        ],
                        "where": {
                          "localId": "198",
                          "type": "InValueSet",
                          "code": {
                            "localId": "196",
                            "path": "code",
                            "scope": "HospitalLocation",
                            "type": "Property"
                          },
                          "valueset": {
                            "localId": "197",
                            "name": "Emergency Department Visit"
                          }
                        }
                      }
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "191",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              },
              {
                "localId": "224",
                "name": "First Inpatient Intensive Care Unit",
                "context": "Patient",
                "accessLevel": "Public",
                "type": "FunctionDef",
                "annotation": [
                  {
                    "type": "Annotation",
                    "s": {
                      "r": "224",
                      "s": [
                        {
                          "value": [
                            "define function ",
                            "\"First Inpatient Intensive Care Unit\"",
                            "(",
                            "Encounter",
                            " "
                          ]
                        },
                        {
                          "r": "204",
                          "s": [
                            {
                              "value": [
                                "\"Encounter, Performed\""
                              ]
                            }
                          ]
                        },
                        {
                          "value": [
                            "):\r\n\t"
                          ]
                        },
                        {
                          "r": "223",
                          "s": [
                            {
                              "r": "223",
                              "s": [
                                {
                                  "value": [
                                    "First",
                                    "("
                                  ]
                                },
                                {
                                  "r": "222",
                                  "s": [
                                    {
                                      "s": [
                                        {
                                          "r": "207",
                                          "s": [
                                            {
                                              "r": "206",
                                              "s": [
                                                {
                                                  "value": [
                                                    "("
                                                  ]
                                                },
                                                {
                                                  "r": "206",
                                                  "s": [
                                                    {
                                                      "r": "205",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Encounter"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "206",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "facilityLocations"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    ")"
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "HospitalLocation"
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "217",
                                      "s": [
                                        {
                                          "value": [
                                            "where "
                                          ]
                                        },
                                        {
                                          "r": "217",
                                          "s": [
                                            {
                                              "r": "211",
                                              "s": [
                                                {
                                                  "r": "209",
                                                  "s": [
                                                    {
                                                      "r": "208",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "HospitalLocation"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "209",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "code"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " in "
                                                  ]
                                                },
                                                {
                                                  "r": "210",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "\"Intensive Care Unit\""
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            },
                                            {
                                              "value": [
                                                "\r\n\t\t\t\tand "
                                              ]
                                            },
                                            {
                                              "r": "216",
                                              "s": [
                                                {
                                                  "r": "213",
                                                  "s": [
                                                    {
                                                      "r": "212",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "HospitalLocation"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "213",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "locationPeriod"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                },
                                                {
                                                  "value": [
                                                    " ",
                                                    "during",
                                                    " "
                                                  ]
                                                },
                                                {
                                                  "r": "215",
                                                  "s": [
                                                    {
                                                      "r": "214",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "Encounter"
                                                          ]
                                                        }
                                                      ]
                                                    },
                                                    {
                                                      "value": [
                                                        "."
                                                      ]
                                                    },
                                                    {
                                                      "r": "215",
                                                      "s": [
                                                        {
                                                          "value": [
                                                            "relevantPeriod"
                                                          ]
                                                        }
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    },
                                    {
                                      "value": [
                                        "\r\n\t\t\t"
                                      ]
                                    },
                                    {
                                      "r": "221",
                                      "s": [
                                        {
                                          "value": [
                                            "sort by "
                                          ]
                                        },
                                        {
                                          "r": "220",
                                          "s": [
                                            {
                                              "r": "219",
                                              "s": [
                                                {
                                                  "value": [
                                                    "start of "
                                                  ]
                                                },
                                                {
                                                  "r": "218",
                                                  "s": [
                                                    {
                                                      "value": [
                                                        "locationPeriod"
                                                      ]
                                                    }
                                                  ]
                                                }
                                              ]
                                            }
                                          ]
                                        }
                                      ]
                                    }
                                  ]
                                },
                                {
                                  "value": [
                                    "\r\n\t)"
                                  ]
                                }
                              ]
                            }
                          ]
                        }
                      ]
                    }
                  }
                ],
                "expression": {
                  "localId": "223",
                  "type": "First",
                  "source": {
                    "localId": "222",
                    "type": "Query",
                    "source": [
                      {
                        "localId": "207",
                        "alias": "HospitalLocation",
                        "expression": {
                          "localId": "206",
                          "path": "facilityLocations",
                          "type": "Property",
                          "source": {
                            "localId": "205",
                            "name": "Encounter",
                            "type": "OperandRef"
                          }
                        }
                      }
                    ],
                    "relationship": [

                    ],
                    "where": {
                      "localId": "217",
                      "type": "And",
                      "operand": [
                        {
                          "localId": "211",
                          "type": "InValueSet",
                          "code": {
                            "localId": "209",
                            "path": "code",
                            "scope": "HospitalLocation",
                            "type": "Property"
                          },
                          "valueset": {
                            "localId": "210",
                            "name": "Intensive Care Unit"
                          }
                        },
                        {
                          "localId": "216",
                          "type": "IncludedIn",
                          "operand": [
                            {
                              "localId": "213",
                              "path": "locationPeriod",
                              "scope": "HospitalLocation",
                              "type": "Property"
                            },
                            {
                              "localId": "215",
                              "path": "relevantPeriod",
                              "type": "Property",
                              "source": {
                                "localId": "214",
                                "name": "Encounter",
                                "type": "OperandRef"
                              }
                            }
                          ]
                        }
                      ]
                    },
                    "sort": {
                      "localId": "221",
                      "by": [
                        {
                          "localId": "220",
                          "direction": "asc",
                          "type": "ByExpression",
                          "expression": {
                            "localId": "219",
                            "type": "Start",
                            "operand": {
                              "localId": "218",
                              "name": "locationPeriod",
                              "type": "IdentifierRef"
                            }
                          }
                        }
                      ]
                    }
                  }
                },
                "operand": [
                  {
                    "name": "Encounter",
                    "operandTypeSpecifier": {
                      "localId": "204",
                      "name": "{urn:healthit-gov:qdm:v5_3}PositiveEncounterPerformed",
                      "type": "NamedTypeSpecifier"
                    }
                  }
                ]
              }
            ]
          }
        }
      },
      "elm_annotations": {
        "statements": [
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Encounter\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "[\"Encounter, Performed\": "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "\"Emergency Department Visit\""
                              }
                            ]
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "]"
                          }
                        ]
                      }
                    ],
                    "node_type": "Retrieve",
                    "ref_id": "14"
                  }
                ],
                "ref_id": "15"
              }
            ],
            "define_name": "Encounter"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"LengthInDays\"(Value "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "Interval<"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "DateTime"
                              }
                            ]
                          }
                        ],
                        "ref_id": "20"
                      },
                      {
                        "children": [
                          {
                            "text": ">"
                          }
                        ]
                      }
                    ],
                    "ref_id": "21"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "difference in days between "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "start of "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "22"
                              }
                            ],
                            "node_type": "Start",
                            "ref_id": "23"
                          },
                          {
                            "children": [
                              {
                                "text": " and &#13;\n  "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "end of "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "24"
                              }
                            ],
                            "node_type": "End",
                            "ref_id": "25"
                          }
                        ],
                        "node_type": "DifferenceBetween",
                        "ref_id": "26"
                      }
                    ],
                    "node_type": "DifferenceBetween",
                    "ref_id": "26"
                  }
                ],
                "ref_id": "27"
              }
            ],
            "define_name": "LengthInDays"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define \"Inpatient Encounter\":&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "[\"Encounter, Performed\": "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "\"Encounter Inpatient\""
                                              }
                                            ]
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "]"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "Retrieve",
                                    "ref_id": "16"
                                  }
                                ],
                                "node_type": "Retrieve",
                                "ref_id": "16"
                              },
                              {
                                "children": [
                                  {
                                    "text": " EncounterInpatient"
                                  }
                                ]
                              }
                            ],
                            "ref_id": "17"
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "text": "&#13;\n    "
                          }
                        ]
                      },
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "where "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"LengthInDays\"("
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "EncounterInpatient"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "18"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "."
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "relevantPeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "19"
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "19"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ")"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "FunctionRef",
                                    "ref_id": "28"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "<= 120"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "LessOrEqual",
                                "ref_id": "30"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      and "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "EncounterInpatient"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "31"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "relevantPeriod"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "32"
                                      }
                                    ],
                                    "node_type": "Property",
                                    "ref_id": "32"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " ends during "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "\"Measurement Period\""
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "ParameterRef",
                                    "ref_id": "33"
                                  }
                                ],
                                "node_type": "In",
                                "ref_id": "34"
                              }
                            ],
                            "ref_id": "35"
                          }
                        ],
                        "ref_id": "35"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "36"
                  }
                ],
                "ref_id": "37"
              }
            ],
            "define_name": "Inpatient Encounter"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"ToDate\"(Value "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "38"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "DateTime("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "year from "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "39"
                              }
                            ],
                            "ref_id": "40"
                          },
                          {
                            "children": [
                              {
                                "text": ", "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "month from "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "41"
                              }
                            ],
                            "ref_id": "42"
                          },
                          {
                            "children": [
                              {
                                "text": ", "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "day from "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "43"
                              }
                            ],
                            "ref_id": "44"
                          },
                          {
                            "children": [
                              {
                                "text": ", 0, 0, 0, 0, "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "timezone from "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Value"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "49"
                              }
                            ],
                            "ref_id": "50"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "DateTime",
                        "ref_id": "51"
                      }
                    ],
                    "node_type": "DateTime",
                    "ref_id": "51"
                  }
                ],
                "ref_id": "52"
              }
            ],
            "define_name": "ToDate"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInDaysAt\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "53"
                  },
                  {
                    "children": [
                      {
                        "text": ", AsOf "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "54"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "days between "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "BirthDateTime"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "55"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "56"
                          },
                          {
                            "children": [
                              {
                                "text": "and "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "AsOf"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "57"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "58"
                          }
                        ],
                        "node_type": "DurationBetween",
                        "ref_id": "59"
                      }
                    ],
                    "node_type": "DurationBetween",
                    "ref_id": "59"
                  }
                ],
                "ref_id": "60"
              }
            ],
            "define_name": "CalendarAgeInDaysAt"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInDays\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "61"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "CalendarAgeInDaysAt("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "BirthDateTime"
                                  }
                                ]
                              }
                            ],
                            "node_type": "OperandRef",
                            "ref_id": "62"
                          },
                          {
                            "children": [
                              {
                                "text": ", "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Today()"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Today",
                            "ref_id": "63"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "FunctionRef",
                        "ref_id": "64"
                      }
                    ],
                    "node_type": "FunctionRef",
                    "ref_id": "64"
                  }
                ],
                "ref_id": "65"
              }
            ],
            "define_name": "CalendarAgeInDays"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInMonthsAt\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "66"
                  },
                  {
                    "children": [
                      {
                        "text": ", AsOf "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "67"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "months between "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "BirthDateTime"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "68"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "69"
                          },
                          {
                            "children": [
                              {
                                "text": "and "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "AsOf"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "70"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "71"
                          }
                        ],
                        "node_type": "DurationBetween",
                        "ref_id": "72"
                      }
                    ],
                    "node_type": "DurationBetween",
                    "ref_id": "72"
                  }
                ],
                "ref_id": "73"
              }
            ],
            "define_name": "CalendarAgeInMonthsAt"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInMonths\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "74"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "CalendarAgeInMonthsAt("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "BirthDateTime"
                                  }
                                ]
                              }
                            ],
                            "node_type": "OperandRef",
                            "ref_id": "75"
                          },
                          {
                            "children": [
                              {
                                "text": ", "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Today()"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Today",
                            "ref_id": "76"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "FunctionRef",
                        "ref_id": "77"
                      }
                    ],
                    "node_type": "FunctionRef",
                    "ref_id": "77"
                  }
                ],
                "ref_id": "78"
              }
            ],
            "define_name": "CalendarAgeInMonths"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInYearsAt\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "79"
                  },
                  {
                    "children": [
                      {
                        "text": ", AsOf "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "80"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "years between "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "BirthDateTime"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "81"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "82"
                          },
                          {
                            "children": [
                              {
                                "text": "and "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"ToDate\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "AsOf"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "83"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "ToDate",
                            "ref_id": "84"
                          }
                        ],
                        "node_type": "DurationBetween",
                        "ref_id": "85"
                      }
                    ],
                    "node_type": "DurationBetween",
                    "ref_id": "85"
                  }
                ],
                "ref_id": "86"
              }
            ],
            "define_name": "CalendarAgeInYearsAt"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"CalendarAgeInYears\"(BirthDateTime "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "DateTime"
                          }
                        ]
                      }
                    ],
                    "ref_id": "87"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "CalendarAgeInYearsAt("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "BirthDateTime"
                                  }
                                ]
                              }
                            ],
                            "node_type": "OperandRef",
                            "ref_id": "88"
                          },
                          {
                            "children": [
                              {
                                "text": ", "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "Today()"
                                  }
                                ]
                              }
                            ],
                            "node_type": "Today",
                            "ref_id": "89"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "FunctionRef",
                        "ref_id": "90"
                      }
                    ],
                    "node_type": "FunctionRef",
                    "ref_id": "90"
                  }
                ],
                "ref_id": "91"
              }
            ],
            "define_name": "CalendarAgeInYears"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospitalization\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "92"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "singleton from "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "( "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "[\"Encounter, Performed\": "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "\"Emergency Department Visit\""
                                                                          }
                                                                        ]
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "]"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Retrieve",
                                                                "ref_id": "93"
                                                              }
                                                            ],
                                                            "node_type": "Retrieve",
                                                            "ref_id": "93"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " EDVisit"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "94"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n      "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "where "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "EDVisit"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "95"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "96"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "96"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "ends "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "1 hour"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Quantity",
                                                                "ref_id": "100"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": " or less on or before"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "101"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "start of "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "Encounter"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "ref_id": "97"
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "."
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "relevantPeriod"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "Property",
                                                                    "ref_id": "98"
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "98"
                                                              }
                                                            ],
                                                            "node_type": "Start",
                                                            "ref_id": "99"
                                                          }
                                                        ],
                                                        "ref_id": "101"
                                                      }
                                                    ],
                                                    "ref_id": "101"
                                                  }
                                                ],
                                                "node_type": "Query",
                                                "ref_id": "102"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n  )"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Query",
                                            "ref_id": "102"
                                          }
                                        ],
                                        "node_type": "SingletonFrom",
                                        "ref_id": "103"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "SingletonFrom",
                                    "ref_id": "103"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " X"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "104"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "return "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "if "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "X"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "AliasRef",
                                        "ref_id": "105"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " is null"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "IsNull",
                                    "ref_id": "106"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " then "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Encounter"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "107"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "relevantPeriod"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "108"
                                      }
                                    ],
                                    "ref_id": "108"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " &#13;\n      else "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "Interval["
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "start of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "X"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "109"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "relevantPeriod"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "110"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "110"
                                          }
                                        ],
                                        "ref_id": "111"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": ", &#13;\n    "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "end of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Encounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "112"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "relevantPeriod"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "113"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "113"
                                          }
                                        ],
                                        "ref_id": "114"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "]"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "115"
                                  }
                                ],
                                "node_type": "If",
                                "ref_id": "116"
                              }
                            ],
                            "ref_id": "117"
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "118"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "118"
                  }
                ],
                "ref_id": "119"
              }
            ],
            "define_name": "Hospitalization"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospitalization Locations\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "123"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "( "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "singleton from "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "( "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "[\"Encounter, Performed\": "
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "\"Emergency Department Visit\""
                                                                          }
                                                                        ]
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "]"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Retrieve",
                                                                "ref_id": "124"
                                                              }
                                                            ],
                                                            "node_type": "Retrieve",
                                                            "ref_id": "124"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " EDVisit"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "125"
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "&#13;\n      "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "where "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "EDVisit"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "ref_id": "126"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "."
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "relevantPeriod"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "127"
                                                              }
                                                            ],
                                                            "node_type": "Property",
                                                            "ref_id": "127"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "ends "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "1 hour"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "Quantity",
                                                                "ref_id": "131"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": " or less on or before"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "132"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": " "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "start of "
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "Encounter"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "ref_id": "128"
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "."
                                                                      }
                                                                    ]
                                                                  },
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "children": [
                                                                          {
                                                                            "text": "relevantPeriod"
                                                                          }
                                                                        ]
                                                                      }
                                                                    ],
                                                                    "node_type": "Property",
                                                                    "ref_id": "129"
                                                                  }
                                                                ],
                                                                "node_type": "Property",
                                                                "ref_id": "129"
                                                              }
                                                            ],
                                                            "node_type": "Start",
                                                            "ref_id": "130"
                                                          }
                                                        ],
                                                        "ref_id": "132"
                                                      }
                                                    ],
                                                    "ref_id": "132"
                                                  }
                                                ],
                                                "node_type": "Query",
                                                "ref_id": "133"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n  )"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "Query",
                                            "ref_id": "133"
                                          }
                                        ],
                                        "node_type": "SingletonFrom",
                                        "ref_id": "134"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " )"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "SingletonFrom",
                                    "ref_id": "134"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " EDEncounter"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "135"
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n    "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "return "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "if "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "EDEncounter"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "AliasRef",
                                        "ref_id": "136"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": " is null"
                                          }
                                        ]
                                      }
                                    ],
                                    "node_type": "IsNull",
                                    "ref_id": "137"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " then "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "Encounter"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "138"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "."
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "facilityLocations"
                                              }
                                            ]
                                          }
                                        ],
                                        "ref_id": "139"
                                      }
                                    ],
                                    "ref_id": "139"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": " &#13;\n      else "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "flatten "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "{ "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "EDEncounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "140"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "facilityLocations"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "141"
                                              }
                                            ],
                                            "ref_id": "141"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ", "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Encounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "142"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "facilityLocations"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "143"
                                              }
                                            ],
                                            "ref_id": "143"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " }"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "List",
                                        "ref_id": "144"
                                      }
                                    ],
                                    "ref_id": "145"
                                  }
                                ],
                                "node_type": "If",
                                "ref_id": "146"
                              }
                            ],
                            "ref_id": "147"
                          }
                        ],
                        "node_type": "Query",
                        "ref_id": "148"
                      }
                    ],
                    "node_type": "Query",
                    "ref_id": "148"
                  }
                ],
                "ref_id": "149"
              }
            ],
            "define_name": "Hospitalization Locations"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospitalization Length of Stay\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "150"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "LengthInDays("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"Hospitalization\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Encounter"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "151"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "FunctionRef",
                            "ref_id": "152"
                          },
                          {
                            "children": [
                              {
                                "text": ")"
                              }
                            ]
                          }
                        ],
                        "node_type": "FunctionRef",
                        "ref_id": "153"
                      }
                    ],
                    "node_type": "FunctionRef",
                    "ref_id": "153"
                  }
                ],
                "ref_id": "154"
              }
            ],
            "define_name": "Hospitalization Length of Stay"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospital Admission Time\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "155"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "start of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "text": "\"Hospitalization\"("
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Encounter"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "OperandRef",
                                "ref_id": "156"
                              },
                              {
                                "children": [
                                  {
                                    "text": ")"
                                  }
                                ]
                              }
                            ],
                            "node_type": "FunctionRef",
                            "ref_id": "157"
                          }
                        ],
                        "node_type": "Start",
                        "ref_id": "158"
                      }
                    ],
                    "node_type": "Start",
                    "ref_id": "158"
                  }
                ],
                "ref_id": "159"
              }
            ],
            "define_name": "Hospital Admission Time"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospital Discharge Time\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "160"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  &#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "end of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Encounter"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "161"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "relevantPeriod"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "162"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "162"
                          }
                        ],
                        "node_type": "End",
                        "ref_id": "163"
                      }
                    ],
                    "node_type": "End",
                    "ref_id": "163"
                  }
                ],
                "ref_id": "164"
              }
            ],
            "define_name": "Hospital Discharge Time"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospital Arrival Time\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "165"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "start of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "First("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Hospitalization Locations\"("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Encounter"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "166"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "167"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "167"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "HospitalLocation"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "168"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n      "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "sort by "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "start of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "locationPeriod"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "IdentifierRef",
                                                    "ref_id": "169"
                                                  }
                                                ],
                                                "node_type": "Start",
                                                "ref_id": "170"
                                              }
                                            ],
                                            "ref_id": "171"
                                          }
                                        ],
                                        "ref_id": "172"
                                      }
                                    ],
                                    "ref_id": "173"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n  )"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "174"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "locationPeriod"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "175"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "175"
                          }
                        ],
                        "node_type": "Start",
                        "ref_id": "176"
                      }
                    ],
                    "node_type": "Start",
                    "ref_id": "176"
                  }
                ],
                "ref_id": "177"
              }
            ],
            "define_name": "Hospital Arrival Time"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Hospital Departure Time\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "178"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  &#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "end of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "Last("
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "("
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "\"Hospitalization Locations\"("
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "Encounter"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "OperandRef",
                                                        "ref_id": "179"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": ")"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "FunctionRef",
                                                    "ref_id": "180"
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "text": ")"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "FunctionRef",
                                                "ref_id": "180"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "HospitalLocation"
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "181"
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n      "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "sort by "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "start of "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "text": "locationPeriod"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "node_type": "IdentifierRef",
                                                    "ref_id": "182"
                                                  }
                                                ],
                                                "node_type": "Start",
                                                "ref_id": "183"
                                              }
                                            ],
                                            "ref_id": "184"
                                          }
                                        ],
                                        "ref_id": "185"
                                      }
                                    ],
                                    "ref_id": "186"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n  )"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "187"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "locationPeriod"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "188"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "188"
                          }
                        ],
                        "node_type": "End",
                        "ref_id": "189"
                      }
                    ],
                    "node_type": "End",
                    "ref_id": "189"
                  }
                ],
                "ref_id": "190"
              }
            ],
            "define_name": "Hospital Departure Time"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"Emergency Department Arrival Time\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "191"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "start of "
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "( "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "text": "singleton from "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "( "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "( "
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "\"Hospitalization Locations\"("
                                                                  }
                                                                ]
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "children": [
                                                                      {
                                                                        "text": "Encounter"
                                                                      }
                                                                    ]
                                                                  }
                                                                ],
                                                                "node_type": "OperandRef",
                                                                "ref_id": "192"
                                                              },
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": ")"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "node_type": "FunctionRef",
                                                            "ref_id": "193"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": ")"
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "node_type": "FunctionRef",
                                                        "ref_id": "193"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " HospitalLocation"
                                                          }
                                                        ]
                                                      }
                                                    ],
                                                    "ref_id": "194"
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "&#13;\n        "
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "where "
                                                      }
                                                    ]
                                                  },
                                                  {
                                                    "children": [
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "HospitalLocation"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "195"
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "."
                                                              }
                                                            ]
                                                          },
                                                          {
                                                            "children": [
                                                              {
                                                                "children": [
                                                                  {
                                                                    "text": "code"
                                                                  }
                                                                ]
                                                              }
                                                            ],
                                                            "ref_id": "196"
                                                          }
                                                        ],
                                                        "ref_id": "196"
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "text": " in "
                                                          }
                                                        ]
                                                      },
                                                      {
                                                        "children": [
                                                          {
                                                            "children": [
                                                              {
                                                                "text": "\"Emergency Department Visit\""
                                                              }
                                                            ]
                                                          }
                                                        ],
                                                        "ref_id": "197"
                                                      }
                                                    ],
                                                    "ref_id": "198"
                                                  }
                                                ],
                                                "ref_id": "198"
                                              }
                                            ],
                                            "node_type": "Query",
                                            "ref_id": "199"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": "&#13;\n    )"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Query",
                                        "ref_id": "199"
                                      }
                                    ],
                                    "ref_id": "200"
                                  },
                                  {
                                    "children": [
                                      {
                                        "text": "&#13;\n  )"
                                      }
                                    ]
                                  }
                                ],
                                "ref_id": "200"
                              },
                              {
                                "children": [
                                  {
                                    "text": "."
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "locationPeriod"
                                      }
                                    ]
                                  }
                                ],
                                "node_type": "Property",
                                "ref_id": "201"
                              }
                            ],
                            "node_type": "Property",
                            "ref_id": "201"
                          }
                        ],
                        "node_type": "Start",
                        "ref_id": "202"
                      }
                    ],
                    "node_type": "Start",
                    "ref_id": "202"
                  }
                ],
                "ref_id": "203"
              }
            ],
            "define_name": "Emergency Department Arrival Time"
          },
          {
            "children": [
              {
                "children": [
                  {
                    "children": [
                      {
                        "text": "define function \"First Inpatient Intensive Care Unit\"(Encounter "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "text": "\"Encounter, Performed\""
                          }
                        ]
                      }
                    ],
                    "ref_id": "204"
                  },
                  {
                    "children": [
                      {
                        "text": "):&#13;\n  "
                      }
                    ]
                  },
                  {
                    "children": [
                      {
                        "children": [
                          {
                            "children": [
                              {
                                "text": "First("
                              }
                            ]
                          },
                          {
                            "children": [
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "("
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Encounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "205"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "facilityLocations"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "206"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "206"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": ")"
                                              }
                                            ]
                                          }
                                        ],
                                        "node_type": "Property",
                                        "ref_id": "206"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "HospitalLocation"
                                          }
                                        ]
                                      }
                                    ],
                                    "ref_id": "207"
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "where "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "HospitalLocation"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "208"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "code"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "209"
                                              }
                                            ],
                                            "ref_id": "209"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " in "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "\"Intensive Care Unit\""
                                                  }
                                                ]
                                              }
                                            ],
                                            "ref_id": "210"
                                          }
                                        ],
                                        "node_type": "InValueSet",
                                        "ref_id": "211"
                                      },
                                      {
                                        "children": [
                                          {
                                            "text": "&#13;\n        and "
                                          }
                                        ]
                                      },
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "HospitalLocation"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "212"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "locationPeriod"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "213"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "213"
                                          },
                                          {
                                            "children": [
                                              {
                                                "text": " during "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "Encounter"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "ref_id": "214"
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "text": "."
                                                  }
                                                ]
                                              },
                                              {
                                                "children": [
                                                  {
                                                    "children": [
                                                      {
                                                        "text": "relevantPeriod"
                                                      }
                                                    ]
                                                  }
                                                ],
                                                "node_type": "Property",
                                                "ref_id": "215"
                                              }
                                            ],
                                            "node_type": "Property",
                                            "ref_id": "215"
                                          }
                                        ],
                                        "node_type": "IncludedIn",
                                        "ref_id": "216"
                                      }
                                    ],
                                    "ref_id": "217"
                                  }
                                ],
                                "ref_id": "217"
                              },
                              {
                                "children": [
                                  {
                                    "text": "&#13;\n      "
                                  }
                                ]
                              },
                              {
                                "children": [
                                  {
                                    "children": [
                                      {
                                        "text": "sort by "
                                      }
                                    ]
                                  },
                                  {
                                    "children": [
                                      {
                                        "children": [
                                          {
                                            "children": [
                                              {
                                                "text": "start of "
                                              }
                                            ]
                                          },
                                          {
                                            "children": [
                                              {
                                                "children": [
                                                  {
                                                    "text": "locationPeriod"
                                                  }
                                                ]
                                              }
                                            ],
                                            "node_type": "IdentifierRef",
                                            "ref_id": "218"
                                          }
                                        ],
                                        "node_type": "Start",
                                        "ref_id": "219"
                                      }
                                    ],
                                    "ref_id": "220"
                                  }
                                ],
                                "ref_id": "221"
                              }
                            ],
                            "ref_id": "222"
                          },
                          {
                            "children": [
                              {
                                "text": "&#13;\n  )"
                              }
                            ]
                          }
                        ],
                        "node_type": "First",
                        "ref_id": "223"
                      }
                    ],
                    "node_type": "First",
                    "ref_id": "223"
                  }
                ],
                "ref_id": "224"
              }
            ],
            "define_name": "First Inpatient Intensive Care Unit"
          }
        ],
        "identifier": {
          "id": "MATGlobalCommonFunctions",
          "version": "2.0.000"
        }
      },
      "is_main_library": false,
      "is_top_level": true,
      "library_name": "MATGlobalCommonFunctions",
      "library_version": "2.0.000",
      "statement_dependencies": [
        {
          "statement_name": "CalendarAgeInYearsAt",
          "statement_references": [
            {
              "hqmf_id": null,
              "library_name": "MATGlobalCommonFunctions",
              "statement_name": "ToDate"
            }
          ]
        },
        {
          "statement_name": "ToDate"
        }
      ]
    }
  ],
  "created_at": null,
  "description": "Percentage of patients aged 18 years or older who receive opioid therapy for 90 days or longer and are prescribed an average daily dose of 90 morphine milligram equivalents (MME) or larger",
  "hqmf_id": "40280382-5FA6-FE85-015F-BBA077F30D0C",
  "hqmf_set_id": "442EDEF2-7347-4080-988F-16C9D1998803",
  "hqmf_version_number": "0",
  "main_cql_library": "PotentialOpioidOveruse",
  "measure_attributes": [
    {
      "code": "OTH",
      "value": "460",
      "name": "eCQM Identifier (Measure Authoring Tool)",
      "code_obj": {
        "type": "CD",
        "null_flavor": "OTH",
        "original_text": "eCQM Identifier (Measure Authoring Tool)"
      },
      "value_obj": {
        "type": "ED",
        "value": "460",
        "media_type": "text/plain"
      }
    },
    {
      "code": "OTH",
      "value": "",
      "name": "NQF Number",
      "code_obj": {
        "type": "CD",
        "null_flavor": "OTH",
        "original_text": "NQF Number"
      },
      "value_obj": {
        "type": "ED",
        "value": "",
        "media_type": "text/plain"
      }
    },
    {
      "code": "COPY",
      "value": "Limited proprietary coding is contained in the Measure specifications for user convenience. Users of proprietary code sets should obtain all necessary licenses from the owners of the code sets.\n  \nCPT(R) contained in the measure specifications is copyright 2004-2017 American Medical Association. LOINC(R) copyright 2004-2017 Regenstrief Institute, Inc. This material contains SNOMED Clinical Terms(R) (SNOMED CT[R]) copyright 2004-2017 International Health Terminology Standards Development Organisation. ICD-10 copyright 2017 World Health Organization. All Rights Reserved.",
      "name": "Copyright",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "COPY",
        "title": "Copyright"
      },
      "value_obj": {
        "type": "ED",
        "value": "Limited proprietary coding is contained in the Measure specifications for user convenience. Users of proprietary code sets should obtain all necessary licenses from the owners of the code sets.\n  \nCPT(R) contained in the measure specifications is copyright 2004-2017 American Medical Association. LOINC(R) copyright 2004-2017 Regenstrief Institute, Inc. This material contains SNOMED Clinical Terms(R) (SNOMED CT[R]) copyright 2004-2017 International Health Terminology Standards Development Organisation. ICD-10 copyright 2017 World Health Organization. All Rights Reserved.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "DISC",
      "value": "These performance measures are not clinical guidelines, do not establish a standard of medical care, and have not been tested for all potential applications.\n\nTHE MEASURES AND SPECIFICATIONS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n\nDue to technical limitations, registered trademarks are indicated by (R) or [R] and unregistered trademarks are indicated by (TM) or [TM].",
      "name": "Disclaimer",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "DISC",
        "title": "Disclaimer"
      },
      "value_obj": {
        "type": "ED",
        "value": "These performance measures are not clinical guidelines, do not establish a standard of medical care, and have not been tested for all potential applications.\n\nTHE MEASURES AND SPECIFICATIONS ARE PROVIDED \"AS IS\" WITHOUT WARRANTY OF ANY KIND.\n\nDue to technical limitations, registered trademarks are indicated by (R) or [R] and unregistered trademarks are indicated by (TM) or [TM].",
        "media_type": "text/plain"
      }
    },
    {
      "code": "MSRSCORE",
      "name": "Measure Scoring",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "MSRSCORE",
        "title": "Measure Scoring"
      },
      "value_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.1.11.20367",
        "code": "PROPOR",
        "title": "Proportion"
      }
    },
    {
      "code": "MSRTYPE",
      "name": "Measure Type",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "MSRTYPE",
        "title": "Measure Type"
      },
      "value_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.1.11.20368",
        "code": "PROCESS",
        "title": "PROCESS"
      }
    },
    {
      "code": "STRAT",
      "value": "None",
      "name": "Stratification",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "STRAT",
        "title": "Stratification"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "MSRADJ",
      "value": "None",
      "name": "Risk Adjustment",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "MSRADJ",
        "title": "Risk Adjustment"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "MSRAGG",
      "value": "None",
      "name": "Rate Aggregation",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "MSRAGG",
        "title": "Rate Aggregation"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "RAT",
      "value": "More than 100 million people in the United States suffer from chronic pain (Institute of Medicine 2011). An estimated 259 million opioid prescriptions to manage pain were written in the United States in 2012, approximately half of which were written by primary care providers (Cox et al. 2018). From 2000 to 2015, mortality from opioid-specific drug poisoning in the United States tripled, resulting in a reduction in life expectancy for non-Hispanic, white individuals (Dowell et al. 2017).\n\nAlthough all opioids can be dangerous, chronic use of opioids at high doses are more likely to result in fatalities and other adverse drug events (Edlund et al. 2014; Morasco et al. 2010; Atluri et al. 2012; Paulozzi et al. 2014). Recent guidelines recommend that providers use the lowest dose possible when initiating opioid therapy and that they carefully justify prescribing doses above 90 morphine milligram equivalents (MME) per day, considering the benefits and harms of the dose they select (Dowell et al. 2016).\n\nIn a large cohort study of almost 18 million commercially insured patients in the United States, about 15 percent of opioid recipients received a daily dose of 100 MME or higher, and 12 percent received more than a 90-day supply (Liu et al. 2013).",
      "name": "Rationale",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "RAT",
        "title": "Rationale"
      },
      "value_obj": {
        "type": "ED",
        "value": "More than 100 million people in the United States suffer from chronic pain (Institute of Medicine 2011). An estimated 259 million opioid prescriptions to manage pain were written in the United States in 2012, approximately half of which were written by primary care providers (Cox et al. 2018). From 2000 to 2015, mortality from opioid-specific drug poisoning in the United States tripled, resulting in a reduction in life expectancy for non-Hispanic, white individuals (Dowell et al. 2017).\n\nAlthough all opioids can be dangerous, chronic use of opioids at high doses are more likely to result in fatalities and other adverse drug events (Edlund et al. 2014; Morasco et al. 2010; Atluri et al. 2012; Paulozzi et al. 2014). Recent guidelines recommend that providers use the lowest dose possible when initiating opioid therapy and that they carefully justify prescribing doses above 90 morphine milligram equivalents (MME) per day, considering the benefits and harms of the dose they select (Dowell et al. 2016).\n\nIn a large cohort study of almost 18 million commercially insured patients in the United States, about 15 percent of opioid recipients received a daily dose of 100 MME or higher, and 12 percent received more than a 90-day supply (Liu et al. 2013).",
        "media_type": "text/plain"
      }
    },
    {
      "code": "CRS",
      "value": "The Centers for Disease Control and Prevention's CDC Guideline for Prescribing Opioids for Chronic Pain—United States, 2016 (Dowell et al. 2016) states:\n-\"When opioids are started, clinicians should prescribe the lowest effective dosage. Clinicians should use caution when prescribing opioids at any dosage, should carefully reassess evidence of individual benefits and risks when considering increasing dosage to [greater than or equal to] 50 morphine milligram equivalents (MME)/day, and should avoid increasing dosage to [greater than or equal to] 90 MME/day or carefully justify a decision to titrate dosage to [greater than or equal to] 90 MME/day.\"\n-\"Clinicians should evaluate benefits and harms with patients within 1 to 4 weeks of starting opioid therapy for chronic pain or of dose escalation. Clinicians should evaluate benefits and harms of continued therapy with patients every 3 months or more frequently. If benefits do not outweigh harms of continued opioid therapy, clinicians should optimize other therapies and work with patients to taper opioids to lower dosages or to taper and discontinue opioids.\"",
      "name": "Clinical Recommendation Statement",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "CRS",
        "title": "Clinical Recommendation Statement"
      },
      "value_obj": {
        "type": "ED",
        "value": "The Centers for Disease Control and Prevention's CDC Guideline for Prescribing Opioids for Chronic Pain—United States, 2016 (Dowell et al. 2016) states:\n-\"When opioids are started, clinicians should prescribe the lowest effective dosage. Clinicians should use caution when prescribing opioids at any dosage, should carefully reassess evidence of individual benefits and risks when considering increasing dosage to [greater than or equal to] 50 morphine milligram equivalents (MME)/day, and should avoid increasing dosage to [greater than or equal to] 90 MME/day or carefully justify a decision to titrate dosage to [greater than or equal to] 90 MME/day.\"\n-\"Clinicians should evaluate benefits and harms with patients within 1 to 4 weeks of starting opioid therapy for chronic pain or of dose escalation. Clinicians should evaluate benefits and harms of continued therapy with patients every 3 months or more frequently. If benefits do not outweigh harms of continued opioid therapy, clinicians should optimize other therapies and work with patients to taper opioids to lower dosages or to taper and discontinue opioids.\"",
        "media_type": "text/plain"
      }
    },
    {
      "code": "IDUR",
      "value": "A lower rate indicates better quality",
      "name": "Improvement Notation",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "IDUR",
        "title": "Improvement Notation"
      },
      "value_obj": {
        "type": "ED",
        "value": "A lower rate indicates better quality",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Atluri S., H. Akbik, and G. Sudarshan. Prevention of Opioid Abuse in Chronic Non-Cancer Pain: An Algorithmic, Evidence-Based Approach. Pain Physician, vol. 15, no. 3, July 2012, pp. ES177-ES189.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Atluri S., H. Akbik, and G. Sudarshan. Prevention of Opioid Abuse in Chronic Non-Cancer Pain: An Algorithmic, Evidence-Based Approach. Pain Physician, vol. 15, no. 3, July 2012, pp. ES177-ES189.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Cox, N., C.R. Tak, S.E. Cochella, E. Leishman, and K. Gunning. \"Impact of Pharmacist Previsit Input to Providers on Chronic Opioid Prescribing Safety.\" Journal of the American Board of Family Medicine, vol. 31, no. 1, January 2018, pp. 105–112.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Cox, N., C.R. Tak, S.E. Cochella, E. Leishman, and K. Gunning. \"Impact of Pharmacist Previsit Input to Providers on Chronic Opioid Prescribing Safety.\" Journal of the American Board of Family Medicine, vol. 31, no. 1, January 2018, pp. 105–112.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Dowell, D., T.M. Haegerich, and R. Chou. \"CDC Guideline for Prescribing Opioids for Chronic Pain--United States, 2016.\" Recommendations and Reports, vol. 65, no. 1, March 2016, pp. 1-49.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Dowell, D., T.M. Haegerich, and R. Chou. \"CDC Guideline for Prescribing Opioids for Chronic Pain--United States, 2016.\" Recommendations and Reports, vol. 65, no. 1, March 2016, pp. 1-49.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Edlund, M.J., B.C. Martin, J.E. Russo, A. DeVries, J.B. Braden, and M.D. Sullivan. \"The Role of Opioid Prescription in Incident Opioid Abuse and Dependence Among Individuals with Chronic Noncancer Pain.\" Clinical Journal of Pain, vol. 30, no. 7, July 2014, pp. 557–564.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Edlund, M.J., B.C. Martin, J.E. Russo, A. DeVries, J.B. Braden, and M.D. Sullivan. \"The Role of Opioid Prescription in Incident Opioid Abuse and Dependence Among Individuals with Chronic Noncancer Pain.\" Clinical Journal of Pain, vol. 30, no. 7, July 2014, pp. 557–564.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Institute of Medicine. “Relieving Pain in America: A Blueprint for Transforming Prevention, Care, Education, and Research.” 2011. Available at http://www.nationalacademies.org/hmd/Reports/2011/Relieving-Pain-in-America-A-Blueprint-for-Transforming-Prevention-Care-Education-Research.aspx",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Institute of Medicine. “Relieving Pain in America: A Blueprint for Transforming Prevention, Care, Education, and Research.” 2011. Available at http://www.nationalacademies.org/hmd/Reports/2011/Relieving-Pain-in-America-A-Blueprint-for-Transforming-Prevention-Care-Education-Research.aspx",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Liu, Y., J.E. Logan, L.J. Paulozzi, K. Zhang, and C.M. Jones. \"Potential Misuse and Inappropriate Prescription Practices Involving Opioid Analgesics.\" American Journal of Managed Care, vol. 19, no. 8, August 2013, pp. 648-658.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Liu, Y., J.E. Logan, L.J. Paulozzi, K. Zhang, and C.M. Jones. \"Potential Misuse and Inappropriate Prescription Practices Involving Opioid Analgesics.\" American Journal of Managed Care, vol. 19, no. 8, August 2013, pp. 648-658.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Morasco, B.J., J.P Duckart, T.P. Car, R.A. Deyo, and S.K. Dobscha. \"Clinical Characteristics of Veterans Prescribed High Doses of Opioid Medications for Chronic Non-Cancer Pain.\" Pain, vol. 151, no. 3, December 2010, pp. 625–632.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Morasco, B.J., J.P Duckart, T.P. Car, R.A. Deyo, and S.K. Dobscha. \"Clinical Characteristics of Veterans Prescribed High Doses of Opioid Medications for Chronic Non-Cancer Pain.\" Pain, vol. 151, no. 3, December 2010, pp. 625–632.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "REF",
      "value": "Paulozzi, L.J., K. Zhang, C.M. Jones, and K.A. Mack. \"Risk of Adverse Health Outcomes with Increasing Duration and Regularity of Opioid Therapy.\" Journal of the American Board of Family Medicine, vol. 27, no. 3, May–June 2014, pp. 329–338.",
      "name": "Reference",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "REF",
        "title": "Reference"
      },
      "value_obj": {
        "type": "ED",
        "value": "Paulozzi, L.J., K. Zhang, C.M. Jones, and K.A. Mack. \"Risk of Adverse Health Outcomes with Increasing Duration and Regularity of Opioid Therapy.\" Journal of the American Board of Family Medicine, vol. 27, no. 3, May–June 2014, pp. 329–338.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "DEF",
      "value": "Long-term opioid therapy is defined as opioid use for 90 consecutive days or more (CDC 2016).\n\nHigh-dose usage is defined as at least a 90 MME dosage per day (CDC 2016).",
      "name": "Definition",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "DEF",
        "title": "Definition"
      },
      "value_obj": {
        "type": "ED",
        "value": "Long-term opioid therapy is defined as opioid use for 90 consecutive days or more (CDC 2016).\n\nHigh-dose usage is defined as at least a 90 MME dosage per day (CDC 2016).",
        "media_type": "text/plain"
      }
    },
    {
      "code": "GUIDE",
      "value": "Morphine milligram equivalents is abbreviated throughout the measure using 'MME'.\n\nFor this measure, the numerator applies to patients in the initial population with a 90-day or longer supply of opioids at a 90 MME or larger daily dose.\n\nPlease note that the numerator criteria of this measure are satisfied for all patients in the initial population with a 90-day or longer supply of the following specified opioids at a 90 MME or larger average daily dose:\n -Butorphanol\n -Codeine\n-Dihydrocodeine\n-Fentanyl\n-Hydrocodone\n-Hydromorphone\n-Levorphanol\n-Meperidine (Pethidine)\n-Methadone\n-Morphine\n-Nalbuphine\n-Opium\n-Oxycodone\n-Oxymorphone\n-Pentazocine\n-Tapentadol\n-Tramadol\n\nThis measure allows for up to seven days between prescriptions for long-term opioid users. If a patient has a gap between prescriptions of 7 days or fewer but takes one or more opioids listed above for at least 90 days, he or she will still be included in the measure’s denominator.\n\nAverage MME is derived for every day on which a patient has an active order for one or more opioids. That day's MME is calculated for each opioid the patient is taking and is summed for all opioids taken that day. Then, then MMEs for each day on which a patient is using opioids is averaged across the prescription episode length (the total consecutive days on which a patient has an active order for one or more opioids), allowing for up to seven gap days between prescriptions.\n\nMME for each opioid used in measure calculation is based on conversion factors provided by the CDC. Providers can access these values through CDC’s opioid guideline mobile app (available here for download: https://www.cdc.gov/drugoverdose/prescribing/app.html)  For more details on how to calculate daily dose, please review CDC's \"Guideline for Prescribing Opioids for Chronic Pain--United States, 2016;\" a two-page quick reference guide is also available here: https://www.cdc.gov/drugoverdose/pdf/calculating_total_daily_dose-a.pdf.",
      "name": "Guidance",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "GUIDE",
        "title": "Guidance"
      },
      "value_obj": {
        "type": "ED",
        "value": "Morphine milligram equivalents is abbreviated throughout the measure using 'MME'.\n\nFor this measure, the numerator applies to patients in the initial population with a 90-day or longer supply of opioids at a 90 MME or larger daily dose.\n\nPlease note that the numerator criteria of this measure are satisfied for all patients in the initial population with a 90-day or longer supply of the following specified opioids at a 90 MME or larger average daily dose:\n -Butorphanol\n -Codeine\n-Dihydrocodeine\n-Fentanyl\n-Hydrocodone\n-Hydromorphone\n-Levorphanol\n-Meperidine (Pethidine)\n-Methadone\n-Morphine\n-Nalbuphine\n-Opium\n-Oxycodone\n-Oxymorphone\n-Pentazocine\n-Tapentadol\n-Tramadol\n\nThis measure allows for up to seven days between prescriptions for long-term opioid users. If a patient has a gap between prescriptions of 7 days or fewer but takes one or more opioids listed above for at least 90 days, he or she will still be included in the measure’s denominator.\n\nAverage MME is derived for every day on which a patient has an active order for one or more opioids. That day's MME is calculated for each opioid the patient is taking and is summed for all opioids taken that day. Then, then MMEs for each day on which a patient is using opioids is averaged across the prescription episode length (the total consecutive days on which a patient has an active order for one or more opioids), allowing for up to seven gap days between prescriptions.\n\nMME for each opioid used in measure calculation is based on conversion factors provided by the CDC. Providers can access these values through CDC’s opioid guideline mobile app (available here for download: https://www.cdc.gov/drugoverdose/prescribing/app.html)  For more details on how to calculate daily dose, please review CDC's \"Guideline for Prescribing Opioids for Chronic Pain--United States, 2016;\" a two-page quick reference guide is also available here: https://www.cdc.gov/drugoverdose/pdf/calculating_total_daily_dose-a.pdf.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "TRANF",
      "value": "None",
      "name": "Transmission Format",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "TRANF",
        "title": "Transmission Format"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "IPOP",
      "value": "Patients 18 years of age and older prescribed a 90 day or longer supply of opioids and who have a visit during the measurement period",
      "name": "Initial Population",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "IPOP",
        "title": "Initial Population"
      },
      "value_obj": {
        "type": "ED",
        "value": "Patients 18 years of age and older prescribed a 90 day or longer supply of opioids and who have a visit during the measurement period",
        "media_type": "text/plain"
      }
    },
    {
      "code": "DENOM",
      "value": "Equals Initial Patient Population",
      "name": "Denominator",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "DENOM",
        "title": "Denominator"
      },
      "value_obj": {
        "type": "ED",
        "value": "Equals Initial Patient Population",
        "media_type": "text/plain"
      }
    },
    {
      "code": "DENEX",
      "value": "Patients receiving palliative or hospice treatment during the measurement period.\nPatients with cancer during the measurement period.\nPatients with sickle cell disease during the measurement period.",
      "name": "Denominator Exclusions",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "DENEX",
        "title": "Denominator Exclusions"
      },
      "value_obj": {
        "type": "ED",
        "value": "Patients receiving palliative or hospice treatment during the measurement period.\nPatients with cancer during the measurement period.\nPatients with sickle cell disease during the measurement period.",
        "media_type": "text/plain"
      }
    },
    {
      "code": "NUMER",
      "value": "Patients with an average daily dosage of 90 MME or greater prescribed during the measurement year",
      "name": "Numerator",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "NUMER",
        "title": "Numerator"
      },
      "value_obj": {
        "type": "ED",
        "value": "Patients with an average daily dosage of 90 MME or greater prescribed during the measurement year",
        "media_type": "text/plain"
      }
    },
    {
      "code": "NUMEX",
      "value": "None",
      "name": "Numerator Exclusions",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "NUMEX",
        "title": "Numerator Exclusions"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "DENEXCEP",
      "value": "None",
      "name": "Denominator Exceptions",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "DENEXCEP",
        "title": "Denominator Exceptions"
      },
      "value_obj": {
        "type": "ED",
        "value": "None",
        "media_type": "text/plain"
      }
    },
    {
      "code": "SDE",
      "value": "For every patient evaluated by this measure also identify payer, race, ethnicity and sex",
      "name": "Supplemental Data Elements",
      "code_obj": {
        "type": "CD",
        "system": "2.16.840.1.113883.5.4",
        "code": "SDE",
        "title": "Supplemental Data Elements"
      },
      "value_obj": {
        "type": "ED",
        "value": "For every patient evaluated by this measure also identify payer, race, ethnicity and sex",
        "media_type": "text/plain"
      }
    }
  ],
  "measure_period": {
    "type": "IVL_TS",
    "low": {
      "type": "TS",
      "value": "201201010000",
      "inclusive?": true,
      "derived?": false
    },
    "high": {
      "type": "TS",
      "value": "201212312359",
      "inclusive?": true,
      "derived?": false
    },
    "width": {
      "type": "PQ",
      "unit": "a",
      "value": "1",
      "inclusive?": true,
      "derived?": false
    }
  },
  "measure_scoring": "PROPORTION",
  "population_criteria": {
    "IPP": {
      "conjunction?": true,
      "type": "IPP",
      "hqmf_id": "6CA76DEF-10EF-4012-B636-5BFE88AF19F5",
      "preconditions": [
        {
          "id": 2,
          "preconditions": [
            {
              "id": 1,
              "reference": "PotentialOpioidOveruse__Initial_Population__04CCCEF9_103C_4FB7_A9FB_0DD36B221BC4"
            }
          ],
          "conjunction_code": "allTrue"
        }
      ]
    },
    "DENOM": {
      "conjunction?": true,
      "type": "DENOM",
      "hqmf_id": "22AB6E4A-4FD2-4489-841D-045F72291DC5",
      "preconditions": [
        {
          "id": 4,
          "preconditions": [
            {
              "id": 3,
              "reference": "PotentialOpioidOveruse__Denominator__04CCCEF9_103C_4FB7_A9FB_0DD36B221BC4"
            }
          ],
          "conjunction_code": "allTrue"
        }
      ]
    },
    "NUMER": {
      "conjunction?": true,
      "type": "NUMER",
      "hqmf_id": "47AD286D-25AC-4627-B658-5AA4CB49A116",
      "preconditions": [
        {
          "id": 6,
          "preconditions": [
            {
              "id": 5,
              "reference": "PotentialOpioidOveruse__Numerator__04CCCEF9_103C_4FB7_A9FB_0DD36B221BC4"
            }
          ],
          "conjunction_code": "allTrue"
        }
      ]
    },
    "DENEX": {
      "conjunction?": true,
      "type": "DENEX",
      "hqmf_id": "36907D4D-7EB8-476C-B600-397A9FAA2FB4",
      "preconditions": [
        {
          "id": 8,
          "preconditions": [
            {
              "id": 7,
              "reference": "PotentialOpioidOveruse__Denominator_Exclusion__04CCCEF9_103C_4FB7_A9FB_0DD36B221BC4"
            }
          ],
          "conjunction_code": "atLeastOneTrue"
        }
      ]
    }
  },
  "population_sets": [
    {
      "population_set_id": "PopulationCriteria1",
      "populations": {
        "DENEX": {
          "hqmf_id": "36907D4D-7EB8-476C-B600-397A9FAA2FB4",
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "Denominator Exclusion"
        },
        "DENOM": {
          "hqmf_id": "22AB6E4A-4FD2-4489-841D-045F72291DC5",
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "Denominator"
        },
        "IPP": {
          "hqmf_id": "6CA76DEF-10EF-4012-B636-5BFE88AF19F5",
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "Initial Population"
        },
        "NUMER": {
          "hqmf_id": "47AD286D-25AC-4627-B658-5AA4CB49A116",
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "Numerator"
        },
        "_type": "CQM::ProportionPopulationMap"
      },
      "supplemental_data_elements": [
        {
          "hqmf_id": null,
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "SDE Ethnicity"
        },
        {
          "hqmf_id": null,
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "SDE Payer"
        },
        {
          "hqmf_id": null,
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "SDE Race"
        },
        {
          "hqmf_id": null,
          "library_name": "PotentialOpioidOveruse",
          "statement_name": "SDE Sex"
        }
      ],
      "title": "Population Criteria Section"
    }
  ],
  "source_data_criteria": [
    {
      "codeListId": "2.16.840.1.114222.4.11.3591",
      "dataElementCodes": [

      ],
      "description": "Patient Characteristic Payer: Payer",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.58",
      "id": "5d289cd231fe5f8b7f5f26d6",
      "qdmCategory": "patient_characteristic",
      "qdmStatus": "payer",
      "qdmTitle": "Patient Characteristic Payer",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::PatientCharacteristicPayer"
    },
    {
      "codeListId": "2.16.840.1.113762.1.4.1",
      "dataElementCodes": [

      ],
      "description": "Patient Characteristic Sex: ONCAdministrativeSex",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.55",
      "id": "5d289cd231fe5f8b7f5f26d7",
      "qdmCategory": "patient_characteristic",
      "qdmStatus": "gender",
      "qdmTitle": "Patient Characteristic Sex",
      "qdmVersion": "5.5",
      "_type": "QDM::PatientCharacteristicSex"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.3157.1004.26",
      "dataElementCodes": [

      ],
      "daysSupplied": null,
      "description": "Medication, Order: OpioidMedications",
      "dosage": null,
      "frequency": null,
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.51",
      "id": "5d289cd231fe5f8b7f5f26d8",
      "negationRationale": null,
      "prescriber": null,
      "qdmCategory": "medication",
      "qdmStatus": "order",
      "qdmTitle": "Medication, Order",
      "qdmVersion": "5.5",
      "reason": null,
      "refills": null,
      "relevantPeriod": null,
      "route": null,
      "setting": null,
      "supply": null,
      "_type": "QDM::MedicationOrder"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1008",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: OutpatientConsultation",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26d9",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.600.1.1579",
      "dataElementCodes": [

      ],
      "description": "Intervention, Order: PalliativeCare",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.35",
      "id": "5d289cd231fe5f8b7f5f26da",
      "negationRationale": null,
      "qdmCategory": "intervention",
      "qdmStatus": "order",
      "qdmTitle": "Intervention, Order",
      "qdmVersion": "5.5",
      "reason": null,
      "requester": null,
      "_type": "QDM::InterventionOrder"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.600.1.1579",
      "dataElementCodes": [

      ],
      "description": "Intervention, Performed: PalliativeCare",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.36",
      "id": "5d289cd231fe5f8b7f5f26db",
      "negationRationale": null,
      "performer": null,
      "qdmCategory": "intervention",
      "qdmStatus": "performed",
      "qdmTitle": "Intervention, Performed",
      "qdmVersion": "5.5",
      "reason": null,
      "relevantDatetime": null,
      "relevantPeriod": null,
      "result": null,
      "status": null,
      "_type": "QDM::InterventionPerformed"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1025",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: PreventiveCareServices-EstablishedOfficeVisit18andUp",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26dc",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113762.1.4.1080.2",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: FacetoFaceInteraction-NoED",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26dd",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    },
    {
      "anatomicalLocationSite": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113762.1.4.1029.33",
      "dataElementCodes": [

      ],
      "description": "Diagnosis: SickleCellDiseaseSNOMEDCT",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.110",
      "id": "5d289cd231fe5f8b7f5f26de",
      "prevalencePeriod": null,
      "qdmCategory": "condition",
      "qdmTitle": "Diagnosis",
      "qdmVersion": "5.5",
      "qrdaOid": "2.16.840.1.113883.10.20.24.3.135",
      "recorder": null,
      "severity": null,
      "_type": "QDM::Diagnosis"
    },
    {
      "codeListId": "2.16.840.1.114222.4.11.837",
      "dataElementCodes": [

      ],
      "description": "Patient Characteristic Ethnicity: Ethnicity",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.56",
      "id": "5d289cd231fe5f8b7f5f26df",
      "qdmCategory": "patient_characteristic",
      "qdmStatus": "ethnicity",
      "qdmTitle": "Patient Characteristic Ethnicity",
      "qdmVersion": "5.5",
      "_type": "QDM::PatientCharacteristicEthnicity"
    },
    {
      "anatomicalLocationSite": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.108.12.1011",
      "dataElementCodes": [

      ],
      "description": "Diagnosis: AllCancer",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.110",
      "id": "5d289cd231fe5f8b7f5f26e0",
      "prevalencePeriod": null,
      "qdmCategory": "condition",
      "qdmTitle": "Diagnosis",
      "qdmVersion": "5.5",
      "qrdaOid": "2.16.840.1.113883.10.20.24.3.135",
      "recorder": null,
      "severity": null,
      "_type": "QDM::Diagnosis"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1030",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: PreventiveCareServices-Other",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26e1",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    },
    {
      "codeListId": "2.16.840.1.114222.4.11.836",
      "dataElementCodes": [

      ],
      "description": "Patient Characteristic Race: Race",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.59",
      "id": "5d289cd231fe5f8b7f5f26e2",
      "qdmCategory": "patient_characteristic",
      "qdmStatus": "race",
      "qdmTitle": "Patient Characteristic Race",
      "qdmVersion": "5.5",
      "_type": "QDM::PatientCharacteristicRace"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.3157.1004.20",
      "dataElementCodes": [

      ],
      "description": "Intervention, Order: HospiceCareSNO",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.35",
      "id": "5d289cd231fe5f8b7f5f26e3",
      "negationRationale": null,
      "qdmCategory": "intervention",
      "qdmStatus": "order",
      "qdmTitle": "Intervention, Order",
      "qdmVersion": "5.5",
      "reason": null,
      "requester": null,
      "_type": "QDM::InterventionOrder"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.3157.1004.20",
      "dataElementCodes": [

      ],
      "description": "Intervention, Performed: HospiceCareSNO",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.36",
      "id": "5d289cd231fe5f8b7f5f26e4",
      "negationRationale": null,
      "performer": null,
      "qdmCategory": "intervention",
      "qdmStatus": "performed",
      "qdmTitle": "Intervention, Performed",
      "qdmVersion": "5.5",
      "reason": null,
      "relevantDatetime": null,
      "relevantPeriod": null,
      "result": null,
      "status": null,
      "_type": "QDM::InterventionPerformed"
    },
    {
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.3157.1004.20",
      "dataElementCodes": [

      ],
      "description": "Intervention, Recommended: HospiceCareSNO",
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.37",
      "id": "5d289cd231fe5f8b7f5f26e5",
      "negationRationale": null,
      "qdmCategory": "intervention",
      "qdmStatus": "recommended",
      "qdmTitle": "Intervention, Recommended",
      "qdmVersion": "5.5",
      "reason": null,
      "requester": null,
      "_type": "QDM::InterventionRecommended"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1001",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: OfficeVisit",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26e6",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    },
    {
      "admissionSource": null,
      "authorDatetime": null,
      "codeListId": "2.16.840.1.113883.3.464.1003.101.12.1023",
      "dataElementCodes": [

      ],
      "description": "Encounter, Performed: PreventiveCareServices-InitialOfficeVisit18andUp",
      "diagnoses": null,
      "dischargeDisposition": null,
      "facilityLocations": [

      ],
      "hqmfOid": "2.16.840.1.113883.10.20.28.4.5",
      "id": "5d289cd231fe5f8b7f5f26e7",
      "lengthOfStay": null,
      "negationRationale": null,
      "participant": null,
      "priority": null,
      "qdmCategory": "encounter",
      "qdmStatus": "performed",
      "qdmTitle": "Encounter, Performed",
      "qdmVersion": "5.5",
      "relevantPeriod": null,
      "_type": "QDM::EncounterPerformed"
    }
  ],
  "title": "Potential Opioid Overuse",
  "updated_at": null,
  "value_set_ids": [
    "5d289cd131fe5f8b7f5f26b5",
    "5d289cd131fe5f8b7f5f26b6",
    "5d289cd131fe5f8b7f5f26b7",
    "5d289cd131fe5f8b7f5f26b8",
    "5d289cd131fe5f8b7f5f26b9",
    "5d289cd131fe5f8b7f5f26ba",
    "5d289cd131fe5f8b7f5f26bb",
    "5d289cd131fe5f8b7f5f26bc",
    "5d289cd131fe5f8b7f5f26bd",
    "5d289cd131fe5f8b7f5f26be",
    "5d289cd131fe5f8b7f5f26bf",
    "5d289cd131fe5f8b7f5f26c0",
    "5d289cd131fe5f8b7f5f26c1",
    "5d289cd131fe5f8b7f5f26c2",
    "5d289cd131fe5f8b7f5f26c3",
    "5d289cd131fe5f8b7f5f26c4",
    "5d289cd131fe5f8b7f5f26c5",
    "5d289cd131fe5f8b7f5f26c6",
    "5d289cd131fe5f8b7f5f26c7",
    "5d289cd131fe5f8b7f5f26c8",
    "5d289cd131fe5f8b7f5f26c9",
    "5d289cd131fe5f8b7f5f26ca",
    "5d289cd131fe5f8b7f5f26cb",
    "5d289cd131fe5f8b7f5f26cc",
    "5d289cd131fe5f8b7f5f26cd",
    "5d289cd131fe5f8b7f5f26ce",
    "5d289cd131fe5f8b7f5f26cf",
    "5d289cd131fe5f8b7f5f26d0",
    "5d289cd131fe5f8b7f5f26d1",
    "5d289cd131fe5f8b7f5f26d2",
    "5d289cd131fe5f8b7f5f26d3",
    "5d289cd131fe5f8b7f5f26d4",
    "5d289cd131fe5f8b7f5f26d5"
  ]
}